-
GrayIMG
将一幅rgb图像转换成灰度图像,并显示出灰度图像。(the functon is to make a rgb image to gray image.)
- 2015-10-02 21:41:03下载
- 积分:1
-
waveletC++
特征提取中利用小波边缘检测C++源码,希望对大家有用,而且偶也能下载程序了,(feature extraction using wavelet edge detection C source code, we hope to useful, but can even download, Ha ha)
- 2021-02-02 13:49:59下载
- 积分:1
-
ERNSYMNTY
基于VisualC_和DCMTK的医学DICOM图像显示与调窗,同时在MFC 下完成鼠标拖动进行窗宽/窗位的调节(Medical image of DICOM VisualC_ and DCMTK display and window based on, at the same time in MFC complete the mouse to drag the window width/window regulator
)
- 2013-08-26 22:03:24下载
- 积分:1
-
ENVI
ENVI是比较常用的遥感图像处理软件,使用该插件,可以使ENVI软件支持HDF5格式的遥感影像,HDF5数据格式是科学计算一体化数据格式,常用于卫星遥感影像的外部存储。(Envi is more commonly used in remote sensing image processing software, use the plugin can enable envi software support the HDF5 format of remote sensing images, the HDF5 data format is scientific computing integration data format, commonly used in satellite remote sensing image of the external storage.
)
- 2016-07-22 10:52:38下载
- 积分:1
-
Fngprnt
采用最大方差阈值分割法,对指纹进行提取。(Using the maximum variance threshold segmentation method for fingerprint extraction.)
- 2013-11-24 20:39:58下载
- 积分: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
-
BoundaryDetectionVc++Res
图像处理中的边缘检测以及曲线拟合的结合应用,实现边缘连接和线段拟合源码(image processing edge detection and curve fitting combination of applications, connectivity and edge line fitting FOSS)
- 2007-01-01 19:08:58下载
- 积分:1
-
Reny
三维最大Renyi熵的灰度图像阈值分割算法(Maximum Renyi entropy of three-dimensional gray-scale image segmentation algorithm)
- 2011-12-18 19:15:17下载
- 积分:1
-
fire
对火焰图像进行二值化 边缘检测 链码提取 并计算火焰图像的面积和周长 绝对好用!(Binarization flame image edge detection chain code extraction and absolutely easy to calculate the area and perimeter of the flame image!)
- 2013-01-05 16:08:10下载
- 积分:1
-
gmm
高斯混合模型的源代码。从文件中读取数据,用三个高斯混合模型进行处理(Gaussian mixture model of the source code. Read from the file data, using three Gaussian mixture model for processing)
- 2013-10-27 19:58:34下载
- 积分:1