-
Image Reconstruction (ART)
用代数迭代算法ART重建图像,含MATLAB代码(image reconstruction using ART algorithms (MATLAB code))
- 2020-07-09 18:58:55下载
- 积分:1
-
vb 图像处理
文件包括图像平滑处理,灰度拉伸,梯度法锐化,拉普拉斯锐化,色彩变换 二值化,边缘增强等, 还有众多的直方图。是学习vb 图像处理的一个很好的实例!
- 2023-01-16 23:00:03下载
- 积分:1
-
detectline
包含滤波模板,形态学运算,边缘检测结合经自己修改过的hough变换编写的vc程序,成功检测机场跑道和任何图像中最明显的现状特征,经测试,检测精度高。对学习vc编程用于图像处理有帮助。(hough transform based image processing package which is useful for detecting airfield like straight line features.)
- 2009-07-16 15:27:30下载
- 积分:1
-
135
matlab程序,图像应用处理,可实现散焦模糊篡改图像的定位和分离,实现模糊图像真实性的检测(matlab program, image processing applications can be realized defocus blurred image tampering localization and separation, to achieve authenticity blurred image detection)
- 2013-05-24 11:48:51下载
- 积分: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
-
paticle_filter_tracking
运用基于粒子滤波法和MEANSIFT算法实现视频序列的目标跟踪(The use of particle filter based algorithm and MEANSIFT tracking video sequences)
- 2010-11-28 15:47:44下载
- 积分:1
-
GUI
利用Matlab的图形用户界面(GUI)编程实现1.信号产生,信号基本运算,傅立叶变换
2.图像文件的读取和显示,图像增强,边缘检测,图像的数学变换(Using Matlab' s graphical user interface (GUI) programming 1. Signal generation, signal basic operations, Fourier transform 2. Read and display image files, image enhancement, edge detection, image of the mathematical transformation)
- 2011-05-21 11:29:12下载
- 积分:1
-
Halcon Machine Vision
说明: Halcon与C#联合编程(Halcon12)(Halcon and C# joint programming (Halcon 12))
- 2020-07-02 15:37:50下载
- 积分:1
-
curvematchingtool
curve matching tool
关于曲线匹配的一些程序(curve matching tool on the curve matching some of the procedures)
- 2007-05-15 09:52:24下载
- 积分:1
-
image-inpainting
图像修复,使用曲率方法,热传递。边缘修复非常好,参考某博士论文写。(Image restoration, using the curvature method, heat transfer. Edge of the repair is very good, the reference of a doctoral dissertation.)
- 2011-11-25 15:28:02下载
- 积分:1