-
RGB颜色选择器
RGB 颜色选择器,可以自由选择颜色,也可以用吸管吸取屏幕颜色色值,便于程序员们开发(RGB color picker, you can choose colors freely, or you can suck the color value of the screen with a straw, which is easy for programmers to develop)
- 2017-06-24 12:30:48下载
- 积分: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
-
Correlation-Filters-Tracking
基于核的相关滤波跟踪方法,最新的,TPMAI上的文章,速度超级快!(This MATLAB code implements a simple tracking pipeline based on the Kernelized
Correlation Filter (KCF), and Dual Correlation Filter (DCF).)
- 2014-09-23 18:14:40下载
- 积分:1
-
Hough
hough检测圆的Matlab源码!希望对大家有所帮助!(hough circle detection Matlab source code! Want to be helpful to everyone!)
- 2008-07-31 16:00:07下载
- 积分:1
-
zhangwen
说明: 掌纹识别palm print recognition software(gray processing, image filtering, detection angle HARRIS, wavelet decomposition. Heat extraction zone, the function of mathematical ecology )(Palmprint identification palm print recognition software (gray processing, image filtering, detection angle HARRIS, wavelet decomposition. Heat extraction zone, the function of mathematical ecology))
- 2008-10-28 16:57:12下载
- 积分:1
-
使用极限学习机ELM算法进行遥感图像分类的源代码ELMexam
使用极限学习机ELM算法进行遥感图像分类的源代码,很好的例子(Use extreme learning machine ELM remote sensing image classification algorithm source code, a good example)
- 2020-12-27 10:29:03下载
- 积分:1
-
stereoflowMatlab7
说明: matlab下面立体匹配和光流场计算代码,希望能对大家有所帮助。(matlab the following three-dimensional matching and optical flow field calculation code, hoping to be helpful to everyone.)
- 2008-11-21 23:50:36下载
- 积分:1
-
SR
说明: 基于MP的信号稀疏分解参考程序。源程序是《信号与图像的稀疏分解及初级应用》中的(MP sparse decomposition based on the signal reference program. Source is " Signal and image sparse decomposition and primary application" in the)
- 2009-10-29 15:50:02下载
- 积分:1
-
FBP
CT(computer tomography )图像重建算法,FBP,是目前商用CT的主流重建算法(computer tomography reconstruction algrithm)
- 2020-09-05 04:38:06下载
- 积分:1
-
ggongzhennQo
gongzhenQ.m:计算双稳态随机共振系统输入输出信信噪比增益,非常明显的随机共振现象。,已通过测试。
(gongzhenQ.m: calculation of the stochastic resonance of bistable stochastic resonance system input output signal SNR gain, it is clear. , Has been tested.)
- 2012-06-09 10:49:43下载
- 积分:1