-
shuzi
数字识别PCA方法,对其它图像同样适用,程序简便。(Digital identification PCA method, on the other images of the same application, the program is simple.)
- 2012-03-10 18:43:48下载
- 积分:1
-
weina
维纳滤波器仿真,是对基本算法原理的实现,没有考虑误差模型(Wiener filter simulation, the realization of the basic algorithm principle, without considering the error model)
- 2012-09-19 22:15:51下载
- 积分:1
-
matblab笔记2
说明: MATLAB实现数字图像处理和函数绘图的学习,不仅可以掌握基本MATLAB的使用,而且是数字图像处理的入门级学习。(The learning of digital image processing and functional drawing by MATLAB can not only grasp the use of basic MATLAB, but also be an entry-level learning of digital image processing.)
- 2020-06-22 05:20:02下载
- 积分:1
-
image_processing
本程序是基于Matlab的米粒图像的分割、计数以及周长、面积、形状因子等参数的计算。图像分割是基于腐蚀膨胀算法,选用边界跟踪法计算周长,程序代码清晰明了,对于参数的计算速度较快,且参数计算精度较高。(This procedure is based on the Matlab image segmentation grain of rice, counting and perimeter, area, shape factor and other parameters of the calculation. Image segmentation is based on the corrosion expansion algorithm, the choice of boundary tracking method perimeter, code clarity, the parameter calculation is faster and higher precision parameters.)
- 2010-12-20 17:45:09下载
- 积分:1
-
chapter9
说明: 《数字图像处理与机器视觉:Visual C++与Matlab实现》5
图像分割,霍夫变换,Hough变换直线检测的Matlab实现(" Digital image processing and machine vision: Visual C++ and Matlab to achieve" 5 image segmentation, Hough transform, Hough transform line detection of the Matlab implementation)
- 2010-04-22 09:15:40下载
- 积分:1
-
detecting
在复杂背景下的多目标检测算法的研究与源代码(In the complex context of multi-target detecting algorithm and source code
)
- 2012-03-30 10:43:55下载
- 积分:1
-
xibaofenge
从一幅多个细胞的图像中,分割出单个的细胞,一个细胞一个小图。(more than one cell from the image, segmentation of individual cells, a cell a small map.)
- 2006-08-25 16:19:36下载
- 积分:1
-
傅里叶变换
能够对采集到的连续信号进行傅里叶变换,以进行后续处理(It can carry out Fourier transform to collect continuous signals for subsequent processing.)
- 2018-06-04 22:23: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
-
Image2txt
将图片通过灰度值转化为文字符号,并排列为原来图像的样式。
(Convert image by gray scale value into text symbols, side by side as the style of the original image.
)
- 2016-03-02 15:51:11下载
- 积分:1