-
GreyTrans
VC++图像处理程序设计(杨淑莹)第四章_灰度变换源码(VC++ image processing program design (Yang Shuying) Chapter _ gray transform source)
- 2013-03-19 23:52:43下载
- 积分:1
-
werwerwer
说明: 对灰度图象进行正交变换,并进行滤波,产生平滑图象(Gray-scale images of the orthogonal transformation, and filtering to produce a smooth image)
- 2008-11-22 11:02:15下载
- 积分:1
-
CameraCalibrate(相机标定)
利用棋盘格对相机进行标定,加入误差判定及像素空间到实际物理空间的距离计算(The camera is calibrated by checkerboard, the error is added and the distance of pixel space to the actual physical space is calculated)
- 2017-07-26 16:47:44下载
- 积分:1
-
GradsSharp
可用于CCS3.3的数字图像边缘锐化处理(Digital image edges can be used for sharpening CCS3.3)
- 2014-10-28 11:52:14下载
- 积分:1
-
feature-extract
几个大牛对集成了国内外特征提取最前沿的算法,特征提取,DOG,HARRIS,HARRIS-LAPLACE,HARRIS-AFFINE,MSER.描述符,SIFT,AFFINE-SIFT,GLOH.经测试,速度快,描述符准确。(Integration of feature extraction algorithms from several expert of domestic and international, feature extraction: DOG, HARRIS, HARRIS-LAPLACE, HARRIS-AFFINE, MSER; Descriptors: SIFT, AFFINE-SIFT, GLOH. The test reveal the speed and accurate descriptor.)
- 2010-05-10 17:23:44下载
- 积分:1
-
julia
在visual c++中用分形完成的julia集,是分形的具体应用,对学分形的朋友应该有帮助(In the visual c++ Used to complete the julia fractal set, is the concrete application of the fractal, Friend of the credits should be shaped to help)
- 2008-07-10 12:29:03下载
- 积分:1
-
基于区域的主动轮廓模型算法论文RegionBasedSnake
基于区域的主动轮廓模型算法,是论文《Active Contours Without Edges》的VC算法实现(Region-based active contour model algorithm, for the paper " Active Contours Without Edges" of the VC algorithm)
- 2020-06-28 12:00:01下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
PolygonNesting
文章讲述了一种基于多边形的优化排样方法,结合不规则件特征确定了零件排放的最佳位置,给出了排料规则库的设计,通过排料空间的边界组织和边界更新,形成了新的排样空间。
(Article describes a polygon-based layout optimization method combined with irregular parts on characters of the part the best place to discharge given row of the design rule base material, the border by nesting space organization and boundary updates, formed The new layout space.)
- 2010-06-20 15:50:00下载
- 积分:1
-
LMD
自己编写的数字图像处理程序,包括打开bmp图像,直方图,阈值分割,形态学处理等功能。(digital image processing procedures, including open bmp image, histogram, threshold segmentation, morphological processing and other functions.)
- 2013-11-14 22:17:45下载
- 积分:1