-
GeoTrans
图像的几何变换,基于VC++的MFC的。旋转、放大、缩小等(Image geometric transformation, based on the VC++ the MFC. Rotate, zoom in, zoom out, etc.)
- 2013-02-13 10:53:13下载
- 积分: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
-
opencv-otsu
Opencv处理图像,用ostu法实现图像的二值化(Opencv image processing, using ostu method to achieve image binarization)
- 2013-07-21 16:00:03下载
- 积分:1
-
rotation-and-scaling
对图像进行旋转和缩放的源代码,支持原图像的抽样处理及任意角度的旋转(The image rotation and scaling in any direction)
- 2014-11-25 14:27:18下载
- 积分:1
-
SplitterWnd
利用CSplitterWnd类实现对单文档工程进行视图区域的分割(Using the CSplitterWnd class implements the single document engineering for segmenting the view area)
- 2013-05-13 10:12:39下载
- 积分:1
-
PMFFT
PMF FFT捕获技术性能仿真,分段匹配滤波法和改进算法相比较(FFT PMF capture technology performance simulation, segmented matching filter and improved algorithm comparison)
- 2021-03-08 21:29:28下载
- 积分:1
-
photo
vc++6.0进行编程实现对图像的平移处理(vc++6.0 program to achieve the translation of the image processing)
- 2009-04-26 10:26:37下载
- 积分:1
-
VTK
VTK教程-英文版,详细介绍了VTK的相关知识和在医学图像处理方面的应用(VTK BOOK-english edition,introduce VTK install、context、application in medical image anylasis in details)
- 2010-08-09 14:38:45下载
- 积分:1
-
CSC.EGBIS.JSEG.Meanshift
经典的4种彩色图像分割方法:CSC.EGBIS.JSEG.Meanshift
的VC++实现;及相关英文文献。绝对值得拥有!哈哈...(The classic four kinds of color image segmentation method: CSC.EGBIS.JSEG.Meanshift of VC++ implementation and the relevant literature in English. Definitely worth having!ha ha ...)
- 2010-03-08 17:16:14下载
- 积分:1
-
ZaoShengXiaoChuDib
图像噪声消除,内有很多种消除噪声的方法,比如均值法等。(Image noise reduction, there are many ways to eliminate noise, such as the average method.)
- 2010-11-26 10:12:42下载
- 积分:1