-
Digital_image_processing_frequency_domain
该数字图像处理文件有很强的修改能力,可以仔细的分析每一个频域不同条件下的实验结果分析。有很强的处理图像能力(The digital image processing of documents has a strong ability to change and be more careful analysis of each under different conditions, a frequency-domain analysis of the experimental results. Has a strong ability to deal with images)
- 2010-01-03 16:37:44下载
- 积分:1
-
dajin
itk 阈值分割 大津法分割 医学图像分割(itk Otsu threshold segmentation method segmentation medical image segmentation)
- 2011-06-21 21:28:21下载
- 积分:1
-
Image-Zoom
这是图象缩放的代码,对于学习图像的朋友应该有所帮助(This is the image scaling code for the study should help the image of a friend)
- 2011-07-17 19:00:24下载
- 积分:1
-
ImageProcess
c#写的图像处理程序框架,包括打开图片、保存、关闭等功能。图像处理包括图像增强里用到的灰度化、亮度增强、线性非线性平滑、一阶二阶锐化等。(c# write image-processing program framework, including open images, save, close and other functions. Image processing including image enhancement is used inside the gray-oriented, brightness increased, the linear non-linear smoothing, sharpening and so on a first-order second-order.)
- 2009-10-22 10:19:21下载
- 积分:1
-
moving-object-recognition-and-track
本程序完成了对运动图像的识别与跟踪功能,程序里自带了测试的图像(The program to complete the identification and tracking of moving images, the program comes with the test image)
- 2012-08-23 19:46:48下载
- 积分:1
-
ARM_Bmp2C
BMP转位图 6410 logo bmp-C(BMP bitmap transfer)
- 2010-10-13 10:44:27下载
- 积分:1
-
Binarization-Transformation
图像处理源程序,实现二值化变换,经一幅图像灰度化后,变成二值化图像,包括大津法、最大类间方差法、一般阈值法、及文本识别最有用的Niblack法(Image processing program and realized binarization transformation, after by a gray-scale image into binary image, including the Otsu method, Otsu method, the general threshold, and text to identify the most useful Niblack method)
- 2011-11-19 09:53:11下载
- 积分:1
-
image-segmentation
基于自动种子选择的区域生长法,克服了传统区域法的很多缺点(Region growing method based on automatic seed selection, to overcome the many shortcomings of the traditional regional law)
- 2013-04-30 19:51:20下载
- 积分: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
-
fdeconv
图像的反卷积 去卷积复原
效果还不错,欢迎下载(image deconvolution image restoration)
- 2010-12-24 14:11:25下载
- 积分:1