-
PMFFT
PMF FFT捕获技术性能仿真,分段匹配滤波法和改进算法相比较(FFT PMF capture technology performance simulation, segmented matching filter and improved algorithm comparison)
- 2021-03-08 21:29:28下载
- 积分:1
-
灰度数字图像增强处理hudushuzituxiangzengqang
灰度数字图像增强处理,灰度数字图像增强处理,灰度数字图像增强处理,(Deal with gray-scale digital image enhancement)
- 2020-07-09 11:28:55下载
- 积分:1
-
Mirror_DImageProcess
这个实例就像一个魔镜一样,能把原始图像照出各种变换效果,是基于MFC的多文档应用程序(This example is like a mirror,which can convert original image according to a variety of effects)
- 2013-11-29 16:23:24下载
- 积分:1
-
feature-extract
几个大牛对集成了国内外特征提取最前沿的算法,特征提取,DOG,HARRIS,HARRIS-LAPLACE,HARRIS-AFFINE,MSER.描述符,SIFT,AFFINE-SIFT,GLOH.经测试,速度快,描述符准确。(Integration of feature extraction algorithms from several expert of domestic and international, feature extraction: DOG, HARRIS, HARRIS-LAPLACE, HARRIS-AFFINE, MSER; Descriptors: SIFT, AFFINE-SIFT, GLOH. The test reveal the speed and accurate descriptor.)
- 2010-05-10 17:23:44下载
- 积分:1
-
Edge-Thinning
Gray Level Edge Thinning Method
Abstract. An effective edge thinning algorithm is important in image segmentation and object identification since it increases the possibility of success in detecting objects in the image and saves the processing time in the further steps such as labeling and image transformation. We investigate some gray level edge thinning method that is based on the gradient magnitude within 3x3 local neighborhood. The new method has been tested with various types of images the real world. Experimental results show that this method produces more accurate images than those of the popular non-maximum suppression methods do.
- 2016-09-13 22:05:34下载
- 积分:1
-
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
-
Image-feature-extraction
一种改进的基于蚁群算法的图像边缘检测文献,前沿论文(ant colony system,matlab)
- 2012-04-17 15:10: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
-
duoyundongmubiao
图像处理程序中图像处理多运动目标程序,完整程序。下载就能用(Image processing program, image processing of multiple moving targets program, complete the program. Download will be able to use)
- 2012-02-28 14:00:10下载
- 积分:1
-
Thinit
一个很不错的指纹分析算法源代码,可以从采集的指纹图片中进行二次黑白化,平滑图像处理。可以对指纹图像特征信息提取,比对,以轮廓显示以及色彩覆膜特显等技术算法。主要的分析速度很快,值得学习的算法。要在指纹信息处理中比较不错,本站隆重推荐。(A very good fingerprint analysis algorithm source code, from the collection of fingerprint images, the second black and white, smooth image processing. Fingerprint image feature information extraction, compared to the contour display and color coated special significant technical algorithm. Analysis fast, it is worth learning algorithm. Fingerprint information processing site is highly recommended.)
- 2012-08-10 14:55:22下载
- 积分:1