-
chap1_3
一本运用Visual C++ 的 数字图像处理的书里的源代码。非常好,初学者,很快可以上手.范例 3(Visual C++ for The digital image processing)
- 2009-11-04 11:07:22下载
- 积分: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
-
LFMCW
不同信噪比下周期FRFT和FRFT两种方法对LFMCW信号的检测能力对比(FRFT different SNR period and the comparison of the two methods FRFT LFMCW signal detection capability)
- 2015-09-07 19:19:53下载
- 积分:1
-
xbsf
小波算法。机械化的提高我们的效率。让我们减少错误率。大家要对她有性心。(Wavelet algorithm. Mechanization to improve our efficiency. Let us reduce the error rate. We have to have sex to her heart.)
- 2013-12-03 21:36:15下载
- 积分:1
-
view
Matlab time-frequency analysis supporting the source code of chapter 12, please share
- 2017-08-03 03:15:27下载
- 积分:1
-
keypointDetection
点云关键点搜索,根据曲率极值法搜索关键点(PCL:keypoint detection, used for registration and segmentation)
- 2017-12-28 14:02:11下载
- 积分:1
-
vc_captrue
VC摄像图捕捉程序,简单实用,对初学者有帮助(VC camera Figure capture, simple and practical for beginners)
- 2011-06-28 16:27:16下载
- 积分:1
-
decomb522src
一个经典的动态视频图像去隔行处理的源代码,能消除双场图像的场效应(A classic dynamic de-interlacing video processing source code, to eliminate dual-field image of the field-effect)
- 2020-08-14 16:58:27下载
- 积分:1
-
fire1
用于火焰尖角、圆形度、纹理的测量以及图像颜色、矩阵、边缘直方图的测量(For flame sharp corners, roundness, texture measurements, and image color, matrix, edge histogram measurements)
- 2016-10-25 21:06:32下载
- 积分:1
-
freeimage
说明: 图形图像出来库文件,挺好用的,直接包含进工程就可以用了 (Graphic images from the library files, good used directly included into the project can be used)
- 2009-08-15 20:30:56下载
- 积分:1