-
pf_tracking-(1)
粒子滤波跟踪,还算不错的一个demo,调试验证可以通过(Particle filter tracking, fairly good one demo, debug and verify through)
- 2013-07-04 19:55:48下载
- 积分:1
-
fcm_color
模糊c均值聚类算法对遥感图像分类,可自己进行修改(Fuzzy c means clustering algorithm for remote sensing image classification can be modify their)
- 2009-06-23 16:15:39下载
- 积分:1
-
326318
简单水印制作源码,程序结合易语言扩展界面支持库,实现了加载水印效果图和设置水印效果的功能(Simple watermarking source code , the program combined with easy language support library expansion interface , to achieve a load diagram and set watermark watermark function)
- 2016-03-30 13:17:51下载
- 积分:1
-
RemoteControl-1
说明: 一个用VC++6.0编的程序例子,实现远程屏幕图像的传输
(a VC 6.0 Provision procedures example, remote screen image transmission)
- 2020-11-03 18:59:52下载
- 积分:1
-
cxrDCT
DCT1实现一维离散余弦变换;
DCT2实现二维离散余弦变换;
其中使用的算法是碟形算法来实现频域变换(DCT1 peacekeeping achieve a discrete cosine transform; DCT2 achieve two-dimensional discrete cosine transform; the use of the algorithm is dishing algorithm to achieve the transformation frequency domain)
- 2007-05-20 09:22:12下载
- 积分:1
-
Fresnel-diffraction
菲涅尔衍射程序,能够获得所需图像的菲涅尔衍射图样。(Fresnel diffraction procedure, the desired image can be obtained of the Fresnel diffraction pattern. )
- 2021-05-07 06:58:36下载
- 积分: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
-
StrDetect01
文字识别的结构特征提取子函数。对不同字型的字进行提取。(Character Recognition structural feature extraction Functions. Text of different characters extracted.)
- 2007-04-12 00:00:27下载
- 积分:1
-
block_global_motion
matlab电子稳像块匹配算法程序代码 图片路径请自行更改(Electronic Image Stabilization matlab code image block matching algorithm to change the path at your own)
- 2011-05-24 23:55:49下载
- 积分:1
-
contourlet
利用contourlet变换、小波变换等方法,进行图像去噪,经过调试,完全可以运行,效果不错(Contourlet transform, wavelet transform methods for image denoising, debugging, can run, good results)
- 2012-03-09 20:06:22下载
- 积分:1