-
retinex
图像增强的算法,但是有一定的局限性……但是对于一般比较典型的问题效果还是不错的……(Image enhancement algorithms, but there are some limitations ... but for a typical effect is good ...)
- 2012-06-27 12:30:47下载
- 积分: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
-
smooth
对图像进行平滑去噪,提高图像的质量,为后期的图像处理打基础(very good)
- 2013-09-24 10:01:40下载
- 积分:1
-
DIB_USE
打开BMP图像 IHS Brovey图像融合(Open the BMP image IHS Brovey Image Fusion)
- 2010-06-28 14:10:45下载
- 积分:1
-
example
使用C++和CUDA编写的双边滤波器。在平滑图像的同时可以保持边界(Using bilateral filter the C++ and CUDA written. Boundary can be kept in the smooth image while)
- 2013-01-09 19:06:43下载
- 积分:1
-
tuxingxue
画矩形的代码,包含各种算法,具体的自己看吧,这是图形处理的作业之一(Draw a rectangle of the code, contains a variety of algorithms, specifically for yourself, this is one of the graphics processing jobs)
- 2013-09-26 14:42:11下载
- 积分:1
-
picture3
讲解滤波与二值图像处理,比较简单的图像处理源码(Explain the filtering and binary image processing, image processing source code is relatively simple)
- 2011-12-27 19:14:54下载
- 积分:1
-
SimpleGrab
图像处理C程序,利用CCD捕获图像,通过网络接口传输到电脑中。(Image processing C )
- 2012-12-03 09:32:53下载
- 积分:1
-
vc_captrue
VC摄像图捕捉程序,简单实用,对初学者有帮助(VC camera Figure capture, simple and practical for beginners)
- 2011-06-28 16:27:16下载
- 积分:1
-
GraphCutTracker
GraphCut算法的实现,跟踪主动镜头下的目标,效果很好!(GraphCut algorithm to track the goal of the initiative under the lens, very good!)
- 2008-07-30 11:00:10下载
- 积分:1