-
sift-0.9.19
尺度空间sift算法的matlab实现,对理解算法步骤很有帮助(Scale space sift algorithm matlab to achieve an understanding of the steps of the algorithm helpful)
- 2012-10-25 14:38:28下载
- 积分:1
-
plate
说明: 此程序是关于车牌识别重的一个重要环节——图像的二值化过程,希望能给你一些帮助(this program is heavy on the license plate to identify an important part of the-- the two values image process and hope to give you some help)
- 2006-04-01 09:36:42下载
- 积分:1
-
ao2sim.tar
自适应光学仿真软件,希望对大家由帮助!我还没有弄明白原理,希望一起学习(Adaptive optics simulation software, I hope all of you by the help! I have not understood the principle, I hope to learn)
- 2021-04-25 21:48:45下载
- 积分:1
-
HE+AHE+CLAHE+运行结果+QQ1109720378
直方图均衡(HE),自适应直方图均衡(AHE),限制对比度的直方图均衡(CLAHE)的图像处理算法,运行无错误,效果还不错。包含循行结果对比。(Histogram equalization (HE), adaptive histogram equalization (AHE), and contrast-limited histogram equalization (CLAHE) image processing algorithm run without error, and the effect is good. Include line-by-line results comparison.)
- 2021-01-27 12:08:35下载
- 积分:1
-
XINIAN_1
1 完成图象处理的基本功能2:二值化、边缘检测、滤波。
2 熟悉dc的部分常用功能,学习图标控制弹出框。(a complete image processing of the two basic functions : values, edge detection, filtering. 2 familiar with the dc part of the commonly used function, learning to control pop icon frame.)
- 2007-05-26 13:36:55下载
- 积分:1
-
watershed
自己编的分水岭算法的程序 大家随便看看吧(Own procedures for the watershed algorithm we just take a look at it)
- 2009-07-08 19:21:39下载
- 积分:1
-
kelizhijing
通过利用自动阈值法,获得图像中颗粒粒径的分布,并将粒径分布进行排序。(By using automatic threshold method to obtain the particle size distribution of the image, and the particle size distribution of the sort.)
- 2014-03-05 21:53:22下载
- 积分: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
本文件中代码使用前馈卷积神经网络对图像进行去噪(In this paper, we use the feedforward convolution neural network to denoise the image.)
- 2021-04-02 10:39:07下载
- 积分:1
-
Image-Restoration
机器视觉之模糊图像复原,实现inverse Filter, Wiener Filter, Lucy-richardson 算法,里面包括PPT,代码和报告。非常有价值,值得参考!
(Machine vision blurred image restoration, achieve The inverse Filter, Wiener Filter, Lucy-richardson algorithm, which includes the PPT, the code and report. Very valuable and worth considering!)
- 2020-07-03 04:00:01下载
- 积分:1