-
originalpointanalyse2
源点定位程序,可用于检测连通域等功能,代码是c/c++的,放心使用。(Source point positioning procedures, can be used to detect other functions connected domain, the code is c/c++, and ease of use.)
- 2013-09-28 08:31:12下载
- 积分:1
-
ESS
基于efficient subwindow search算法的windows实现(efficient subwindow search for windows )
- 2009-12-27 00:08:09下载
- 积分: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
-
CapVedio
Visual C++ 6.0,基于opencv,MFC框架下开发,一个具有视频交互功能的桌面程序,功能类似于例程“Computer Vision Virtual Buttons”,能够实现基于视频交互的虚拟按钮的触发,(Visual C++ 6.0, based on opencv, MFC framework of development, a video interactive features of desktop applications, functions similar to the routine " Computer Vision Virtual Buttons" , to video-based interactive virtual button, trigger,)
- 2011-01-05 10:33:34下载
- 积分:1
-
LineTrans
线性变换,如图像的拉伸变换等,调试通过,简单易学(Linear transformation, such as image stretching transformation, debugging through easy to learn)
- 2012-02-23 22:19:01下载
- 积分:1
-
epipolar_line
同名核线的提取,完整的c++代码,注释详细易懂,并且已经验证过(Line of the same name as the nuclear extract, complete c++ code, comments, detailed and easy to understand, and have been verified)
- 2020-07-21 18:18:45下载
- 积分:1
-
picture3
讲解滤波与二值图像处理,比较简单的图像处理源码(Explain the filtering and binary image processing, image processing source code is relatively simple)
- 2011-12-27 19:14:54下载
- 积分:1
-
dcmread4
集成ITK、VTK、MFC读取DICOM的代码,建成win32程序即可。运行完美(Integrated ITK, VTK, MFC to read DICOM code, built win32 program can. Works perfect)
- 2021-02-19 16:29:44下载
- 积分:1
-
HuffmanExp
实现对灰度图像的哈夫曼编码,对于其他图像,也可以类似的完成。(Realize grayscale images of hoffmann coding, for other image, also can be similar to the finish.)
- 2010-11-13 09:58:54下载
- 积分:1
-
openvcfushi
基于openvc平台的,用vc语言实现的,根据输入的图像,对图像进行腐蚀操作。(Based on openvc platform, with vc language, according to the input image, the image erosion operation.)
- 2011-10-16 09:47:57下载
- 积分:1