-
ADMM图像去噪
说明: 本实验使用了ADMM的方法进行图像的去噪音。(Image denoising using ADMM method)
- 2021-03-18 13:09:19下载
- 积分:1
-
HandbookOfFaceRecognitionSpringer2005
人脸识别手册,在里面详细的介绍了关于人脸检测的相关知识。不过是全英文的,如果有英语比较好,时间比较多愿意翻译这本书的人请留言。(Face Recognition manual inside detail on the face detection of the relevant knowledge. But is English, if English is better, more time is willing to translate this book, please post.)
- 2009-05-07 17:31:31下载
- 积分:1
-
conjugate_gradient_method
说明: matlab编写的共轭梯度法,用来解决非线性优化问题(matlab prepared by the conjugate gradient method is used to solve nonlinear optimization problems)
- 2010-03-26 15:17:14下载
- 积分:1
-
5-31
局部投影去噪 自己编的 调试已经成功 拿来给大家借鉴 对象是混沌信号(Local projective denoising their own series of debugging has been successfully brought to everybody' s reference object is a chaotic signal)
- 2012-06-20 09:40:39下载
- 积分:1
-
masksample
sample illust back image2 mask sample
- 2013-11-13 01:14:35下载
- 积分: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
-
MRF
Markov随机场的例子程序,包括ICM,BP算法,matlab编写,共30几个函数。(Markov random field examples of procedures, including ICM, BP algorithm, matlab prepared a total of 30 number of functions.)
- 2009-03-04 21:50:56下载
- 积分:1
-
gridsegmentation
基于边缘检测的迭代分水岭分割算法源码(内附图片等)(Image Segmentation Using Iterative Watersheding
Plus Ridge Detection)
- 2009-05-25 17:36:11下载
- 积分:1
-
SAMP
稀疏自适应匹配追踪算法,无需稀疏度,就可以重构原始信号。(Sparse adaptive matching pursuit algorithm, without sparsity, we can reconstruct the original signal.)
- 2021-02-23 16:59:40下载
- 积分:1
-
images
matlab图像处理算法,包括中值滤波,平滑滤波,直方图滤波等(matlab image processing algorithms, including the median filter, smoothing filter, Histogram filtering)
- 2008-05-17 15:57:55下载
- 积分:1