-
camshiftmatlab
camshift算法matlab版,挺不错的源代码程序,有助于大家相互学习讨论(camshift algorithm matlab version, very good program source code to help everyone learn from each other to discuss)
- 2008-03-07 16:03:52下载
- 积分: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
-
MATLAB
MATLAB作业用,MATLAB实验用,MATLAB数字信号处理,信号与系统(MATLAB work with, MATLAB experiment, MATLAB Digital Signal Processing, Signals and Systems)
- 2013-11-09 20:28:00下载
- 积分:1
-
木质相框
用代码实现一个木质的相框效果, 后续可以在框里面添加其他的照相等功能(Using code to achieve the effect of a wooden photo frame, you can add other photography functions in the box later.)
- 2018-07-11 08:18:13下载
- 积分:1
-
LSB
C++语言实现的LSB数字水印算法,Visual C++亲测可用。(C++ language LSB digital watermarking algorithm, the Visual C++ pro-measurement available.)
- 2020-10-20 20:07:24下载
- 积分:1
-
SafetyEva
电力系统设备安全性评估 主要针对接入分布式电源的配电网(The safety Calculation of Power system)
- 2013-10-05 18:23:49下载
- 积分:1
-
qhull
主要介绍了如何在vs2010中使用qhull库以及环境变量配置问题(The project mainly focus on how to set the envirenment variable of qhull library in vs2010)
- 2021-03-03 16:59:32下载
- 积分:1
-
assess
用MFC开发的一个综合测评自动计算软件,对于学习入门MFC有很好的引导作用。(MFC developed a comprehensive evaluation of automatic calculation software for the learning portal MFC good guide.)
- 2012-08-29 00:05:54下载
- 积分:1
-
PCSetEnv
读写注册表,添加或修改环境变量,完整代码实现,(set enviorenment)
- 2012-01-04 20:05:44下载
- 积分:1
-
Ibe_ext
IBE基于身份的加密系统的身份提取程序,使用VC6.0开发,即把身份转换成椭圆曲线上的点(IBE identity-based encryption system of the identity of extraction procedures, using VC6.0 development, namely, the identity into a point on the elliptic curve)
- 2020-06-29 20:40:02下载
- 积分:1