-
DEM-read
此程序可以根据一幅图像的DEM读取一幅图像(This program can read an image of an image based on DEM)
- 2014-11-23 15:26:16下载
- 积分: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
-
IRobustmultist
这是一个关于鲁棒的多传感器图图像配准程序的算法可直接使用。
(This is a robust multi-sensor chart image registration procedures of the algorithm can be used directly.)
- 2012-07-24 10:21:48下载
- 积分:1
-
fdeconv
图像的反卷积 去卷积复原
效果还不错,欢迎下载(image deconvolution image restoration)
- 2010-12-24 14:11:25下载
- 积分:1
-
HIS-RGB
遥感图像的色彩变换 能从IHS转换到RGB 并能从RGB转换到HIS 效果比较好(Remote sensing images from the IHS color transform to the RGB and the conversion from RGB to HIS conversion effect is better)
- 2009-03-13 21:06:43下载
- 积分:1
-
CVPR2011Paper
CVPR2011文章Efficient_Rotation_Invariant_Object_Detection_using_Boosted_Random_Ferns(paper of CVPR2011 Efficient_Rotation_Invariant_Object_Detection_using_Boosted_Random_Ferns)
- 2012-02-21 09:55:26下载
- 积分:1
-
EyeTracking-with-OpenCV--
说明: 转载的,通过眨眼前后灰度图对比是别人眼,一个学习opencv工具的好例程。(Reproduced by blinking eyes of others around the grayscale contrast, a learning tool opencv good routine.)
- 2011-03-19 21:57:03下载
- 积分:1
-
aaadfsdlkfjsdklf2008
基于SIFT特征的遥感影像自动配准.rar (SIFT-based remote sensing image characteristics of automatic registration. Rar)
- 2008-06-21 19:50:00下载
- 积分:1
-
HALCON_CIRCLE
一个简单的HALCON计算圆心坐标的例子,C++代码格式,初学者适用!(A simple example of calculating coordinates HALCON, c++ code format, for beginners!)
- 2021-03-23 10:19:15下载
- 积分:1
-
CSIFTA
介绍基于彩色不变理论的SIFT算法(CSIFT算法)的文章,文章是英文的(Color change based on the theory introduced SIFT algorithm (CSIFT algorithm) article, the article is in English)
- 2011-10-09 08:59:11下载
- 积分:1