-
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
-
xontainerpattern
说明:
- 2018-05-28 22:47:43下载
- 积分:1
-
Duality-Splitting-L1-TV
用对偶分裂算法处理乘性噪声如盐椒噪声(L1+TV),参数由电脑自动选取,matlab程序(A Duality-Based Splitting Method for L1-TV Image Restoration with Automatic Regularization Parameter Choice)
- 2013-09-15 14:40:45下载
- 积分:1
-
Morphology
利用数学形态学对云层背景下的目标进行检测识别,有两种方法。 (Using mathematical morphology of clouds in the context of target identification, there are two ways.)
- 2007-07-13 16:54:57下载
- 积分:1
-
edge_gaijinsobel
Matlab版改进的sobel算子边缘检测算法,有效减少边缘断点(Matlab version improved sobel operator edge detection algorithm is effective in reducing edge break)
- 2017-02-24 16:45:00下载
- 积分:1
-
ShapeRecognition
Shap Context based Shape recognition
- 2010-05-12 14:15:29下载
- 积分:1
-
MotionDetection
说明: 静止背景下运动目标检测,采用帧间差分的方法进行运动目标识别(Static background motion detection, frame difference methods using Moving Object Recognition)
- 2010-04-12 15:22:15下载
- 积分:1
-
SAD
实现了立体匹配的SAD算法计算视差图,结果比较理想(Using the SAD algorithm to calculate the disparity map of stereo matching, the result is good.)
- 2012-05-08 16:02:28下载
- 积分:1
-
IDL code
压缩文件中的代码可以读取图片并计算绿色植被的归一化植被指数,直接在IDL中打开即可使用(The code in the compressed file can read pictures and calculate the normalized vegetation index of green vegetation,and you can open it directly in IDL and use it.)
- 2019-06-11 16:32:04下载
- 积分:1
-
图像处理
说明: 简单图像压缩处理,正交变化,图像压缩灰度变化(Simple Image Compression Processing, Orthogonal Change, Gray Level Change of Image Compression)
- 2019-04-14 20:53:48下载
- 积分:1