-
Edge-Color
各种边缘检测程序,包括2Sobel算子边缘检测, Prewitt算子边缘检测,Roberts算子边缘检测, Laplace算子边缘检测,Canny算子边缘检测
(Edge Color)
- 2012-09-12 09:07:01下载
- 积分:1
-
Make_chaos
说明: Make_chaos 将图像进行置乱,生成乱序图,以便进行水印嵌入(Make_chaos will Scrambling images, generate disorder plans for embedding)
- 2006-03-03 21:51:42下载
- 积分:1
-
Tp_images_Son
the best program to estimait your powr to use matlab in image and sound traitment
- 2011-12-19 22:46:02下载
- 积分:1
-
ASX340AT-image-sensor
Aptina ASX340图像传感器设计线路图及datasheet(Aptina ASX340 image sensor design schematics and datasheet)
- 2015-11-03 16:42:35下载
- 积分:1
-
Spatial-filtering-of-the-image
图像处理的空域滤波增强部分程序代码的编写(Spatial filtering of the image processing, enhanced part of the program code is written)
- 2012-05-25 09:52:29下载
- 积分:1
-
nsct_toolbox-zishiying
基于NSCT变换的自适应去噪,里面包含仿真图(image denoising)
- 2013-08-25 10:17:27下载
- 积分:1
-
lane-detection
车道偏离识别的程序,采用的是动态规划算法,对弯道也有比较高的识别率(lane departure algorithm, which has good performance even for curve lane.)
- 2012-05-13 19:33:14下载
- 积分:1
-
Surf
采用改进的SURF方法进行特征的提取,相比于SIFT,能获取更多的特征点(With the improved SURF methods for feature extraction, compared to SIFT, can get more feature points)
- 2020-12-19 23:59:10下载
- 积分:1
-
WPF常用控件集(含源码)
WPF控件集
- 2020-04-08下载
- 积分: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