-
Smooth
对图像进行平滑处理,像各种滤波的方法,如均值滤波法、中值滤波法(Smoothing the image, like the various filtering methods, such as mean filtering, median filtering method)
- 2010-07-16 13:17:31下载
- 积分:1
-
ostu
ostu二值化算法vc实现,基于MIL图像处理软件包将图像解析,通过ostu求取二值化阈值,实现二值化算法(ostu binarization algorithm to achieve vc, MIL image processing software package based on the image resolution, strike through ostu binarization threshold binarization algorithm to achieve)
- 2013-07-26 14:02:37下载
- 积分:1
-
gusu
利用visualC++和图像处理的知识,编写程序对果蔬进行自动识别(Using visualC++ and image processing knowledge, write a program for automatic identification of fruits and vegetables)
- 2010-10-17 22:47:17下载
- 积分:1
-
wtcl1
应用Intel® JPEG Library v1.5处理图像的例子(Using Intel® JPEG Library v1.5 to process image.)
- 2009-06-02 21:23:23下载
- 积分:1
-
PALMovie
PAL制视频消隔行deinterlace的代码,共参考(PAL video system extinction deinterlace interlaced code, a total of reference)
- 2020-08-05 13:58:32下载
- 积分:1
-
laplace
说明: 本代码采用的是opencv,有视频采集和对采集的视频帧进行laplace处理的功能!(This code uses a opencv, with video capture and the capture of video frames laplace processing capabilities!)
- 2009-08-24 09:50:35下载
- 积分: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
-
图象处理原码
一个很实用图象处理原码(a practical source image processing)
- 2004-09-07 10:38:48下载
- 积分:1
-
Canny_My_GPU
canny边缘检测(自动设置Sigma的高斯平滑+Sobel(原始)+自适应直方图阈值)(canny edge detection (automatically set Sigma Gaussian smoothing+ Sobel (original)+ adaptive histogram threshold))
- 2014-10-27 18:19:35下载
- 积分:1
-
Hyperspectralterrain-classfic
高光谱图像的地物分类技术,对光谱分析并对比检测出地景的算法(Fifth hyperspectral image classification techniques, algorithms for spectral analysis and contrast detect landscapes)
- 2013-11-29 11:06:20下载
- 积分:1