-
goodcode2
vc++图像处理原程序:图片亮度增减源代码(vc original image processing procedures : Photo brightness change source code)
- 2007-04-25 20:30:19下载
- 积分:1
-
firedetection_matlab
对火焰进行检测的matlab程序,可以通过算法检测火焰的情况(Flame detection of the matlab program, algorithm can detect the flame of)
- 2011-08-16 15:19:53下载
- 积分:1
-
Thereseachofimage
图像 自动 标注 通过分析 训练集 ,学习 图像 和标注词 之间的关系,得出 之间的关系,得出 一些规则, 然后使用这些规则 自动 推导出 图像 最适合的标注词 ,这些标注词代表了图像的 ,这些标注词代表了图像的 高层 语义信息 。(Automatic image annotation by analyzing the training set, learning image and mark the relationship between words, the relationship between the draw, draw some rules, and then use these rules to automatically derive the most suitable image annotation words, these words represent the image annotation , these words represent the image annotation level semantic information.)
- 2013-09-08 22:22:36下载
- 积分: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
-
pca
主成分分析程序,应用于图像特征提取,数据降维等方面 (the code of PCA)
- 2010-05-07 18:49:29下载
- 积分:1
-
crazy-climber
小波脊线提取crazy climber算法的文献出处(The wavelet ridge extract crazy climber algorithm literature source)
- 2021-03-04 18:59:32下载
- 积分:1
-
snakedemo
snake算法演示程序,相当不错的一个matlab程序(snake algorithm demo program, a pretty good program matlab)
- 2008-03-26 06:37:24下载
- 积分:1
-
segmentation
a file abaut image segmentation
- 2011-07-07 02:19:08下载
- 积分:1
-
matlab-white-noise--
用MATLAB产生高斯白噪声,并画出其时域波形、自相关函数和功率谱。(MATLAB white noise)
- 2011-12-16 15:52:15下载
- 积分:1
-
Binarization-Transformation
图像处理源程序,实现二值化变换,经一幅图像灰度化后,变成二值化图像,包括大津法、最大类间方差法、一般阈值法、及文本识别最有用的Niblack法(Image processing program and realized binarization transformation, after by a gray-scale image into binary image, including the Otsu method, Otsu method, the general threshold, and text to identify the most useful Niblack method)
- 2011-11-19 09:53:11下载
- 积分:1