-
yixue
医学图像处理方面的一些基础算法,VC环境下编译的一个非常好的程序框架(Medical image processing, some of the basic algorithm, VC compiled under the framework of a very good program)
- 2010-07-08 15:56:34下载
- 积分:1
-
Fourier-Mellin
Application of the Fourier-Mellin transform to translation-, rotationand scale-invariant plant leaf identification
- 2011-10-22 04:50:56下载
- 积分: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
-
qicanshu
说明: 用于三维空间坐标系变换的7参数模型,在设计坐标系变换的各行业应用中用的最多,从数学角度来说也是最严密的转换方法。
由于结果中最多可求得七个转换参数,即三个平移参数、三个旋转参数(Ex、Ey、Ez)和一个尺度缩放因子(m),因此,通常也被称为七参数法。 (Three-dimensional coordinate system transformation for the 7 parameter model, coordinate system transformation in the design of applications using the most, the industry, from the mathematical point of view, the conversion is the most rigorous methods. Since the results can be obtained up to seven transformation parameters, ie three translation parameters, three rotation parameters (Ex, Ey, Ez) and a zoom scale factor (m), therefore, often referred to as seven-parameter method.)
- 2011-04-05 09:09:15下载
- 积分:1
-
sar影像小波去噪
说明: 雷达遥感图像的小波去噪程序,可有效去除噪声(radar remote sensing image wavelet denoising procedures, which can effectively remove noise)
- 2005-10-19 20:02:39下载
- 积分:1
-
RC_C++
说明: 显著性检测的代码,是程明明在12年的CVPR的文章,HC,RC的算法源码。(The code for saliency detection is the source code of Cheng Mingming's CVPR article, HC, RC, in 12 years.)
- 2018-03-27 21:14:02下载
- 积分:1
-
PCA
这是基于VC++编写的对遥感影像分析的程序,主要是对遥感影像进行PCA变换,使得对影响分析不仅可以依托于现成软件,我们自己也可以开发(This is written in VC++ based on remote sensing image analysis program, mainly for remote sensing images PCA transform, makes impact analysis can not only rely on ready-made software, we can also develop their own)
- 2011-07-05 22:36:32下载
- 积分:1
-
1
说明: 标定用的c++程序,可以用来标定得到相机的内参矩阵和畸变参数。(Calibration using matlab toolbox, can be used to calibrate the camera s internal control matrix image obtained.)
- 2015-07-24 16:18:53下载
- 积分:1
-
rentigenzong
实现人体跟踪的源代码,实现对视频中目标人物的跟踪(The human tracking source code, the video of the target person tracking)
- 2013-01-10 19:24:18下载
- 积分:1
-
VCPP-image-processing-chapter05
VisualC++数字图像处理技术详解第2版光盘-第五章(VisualC++ digital image processing technology Detailed Version 2 CD- Chapter V)
- 2016-04-16 13:33:13下载
- 积分:1