-
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
-
生物特征识别技术手指静脉识别技术_余成波
结合图像处理MATLAB的基本原理和知识,详细介绍了手指静脉预处理,图像分割,静脉纹路分割,滤波去噪,细化等相关内容。(Combined with the basic principle and knowledge of image processing, this paper introduces the finger vein pretreatment, image segmentation, vein vein segmentation, filtering and denoising, thinning and other related contents in detail.)
- 2020-06-20 07:20:01下载
- 积分:1
-
Grid
基于OpenCV实现的图像切割程序,通过程序中参数设置分块的数量和大小(The project is uesd to break an image into block)
- 2013-12-01 22:31:29下载
- 积分:1
-
ImageVideo-Segmentation-Current-Status
Image AND Video Segmentation Current Status
- 2013-12-22 05:00:26下载
- 积分:1
-
Harris
Harris角点检测算法,已经测试通过,程序中有清晰的注解,对于算法的理解有较大的帮助.(Harris corner detection algorithm has been tested, there is a clear process of annotation, the algorithm has a greater understanding help.)
- 2009-03-27 01:11:06下载
- 积分:1
-
小波分析
说明: 一维信号的小波分解,然后进行保留模极大系数重构,图像小波去噪(Wavelet decomposition)
- 2020-12-11 10:23:29下载
- 积分:1
-
quyushengzhangfa
用matlab编写的区域生长法的程序,通过选择种子和阈值,可以进行图像分割和检查瑕疵(Written by matlab region growing process, by selecting the seeds and thresholds for image segmentation and inspection for defects)
- 2010-12-21 08:59:06下载
- 积分:1
-
hui
包括回归分析和概率统计,实现了图像的灰度化并进一步用于视频监视控,汽车课设货车Matlab驱动力图程序。( Including regression analysis and probability and statistics, Achieve a grayscale image and further control for video surveillance, Car class-based truck driver trying to Matlab program.)
- 2017-03-10 22:06:27下载
- 积分:1
-
code
2009年CVPR最佳论文,何恺明的基于暗通道的图像去雾的matlab代码.(CVPR best paper in 2009 ,He Kai Ming Single Image Removal Haze is the Using the Dark Channel matlab code,)
- 2014-01-17 20:51:51下载
- 积分:1
-
车牌识别matlab
说明: matlab实现的简单的车牌识别,附有相关模板库(matlab chepaishibie,and xiangguanmubanku)
- 2020-06-09 23:42:50下载
- 积分:1