-
PCA
说明: 对数据的独立性进行分析,对数据的预处理(中心化和白化处理)(The independence of data analysis, data pre-processing (center-based and the whitening process))
- 2010-04-21 00:51:08下载
- 积分:1
-
Fuzzy-clustering-image-segmentation
模糊聚类的图像分割 C-均值聚类 FCM(Fuzzy clustering image segmentation
)
- 2021-05-09 19:48:34下载
- 积分:1
-
67568576745
易语言2D游戏引擎模块源码,易语言写的图形图象编程源码,很好的参考。(Easy language 2D game engine source module, easy language to write the graphics programming source code, a good reference.)
- 2013-09-16 17:46:49下载
- 积分:1
-
huffman
简单的huffman编解码例子,对于初学者会有很大的帮助。(Simple huffman codec examples, for beginners, there will be a great help.)
- 2012-02-15 17:05:55下载
- 积分:1
-
Total-variation-image-deconvolution(dhxu757)
一套使用全变分方法进行图像去噪处理的图像源代码(MATLAB),算法结果性能优良,适用范围广泛.(Use a variational method for image denoising images deal with the source code (MATLAB), the results of algorithm performance, the broad scope of application.)
- 2008-06-30 12:27:32下载
- 积分:1
-
EMD-end-effect-reference-code
EMD端点效应参考代码,包含多个算法:极值平均,边界特征尺度延拓,极值延拓,基于ISBM延拓,平行延拓,镜像延拓(EMD end effect reference code contains multiple algorithms: extreme average, the boundary characteristic scale extension, extreme extension, extension based ISBM parallel extension, mirror extension)
- 2021-03-18 16:09:20下载
- 积分:1
-
fire-dete
基于颜色来检测火焰,将是频频分帧,然后逐帧检测,碧昂切将火焰全画出来,基础编程。(Based on color to test the flame, basic programming
)
- 2012-04-23 20:54:52下载
- 积分:1
-
psf
matlab编写计算直边图像的点扩散函数PSF(Compiling Point Spread Function ( PSF) for Computing Straight Edge Images with MATLAB)
- 2021-03-25 15:19:14下载
- 积分:1
-
target_tracking_using_kalman
基于kalman滤波的图像目标识别的matlab代码,将运动目标从背景中分离出来(Kalman filter based on image recognition of matlab code, will be moving targets separated from the background)
- 2008-05-06 10:16:39下载
- 积分: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