-
whitebalanceandpaper
白平衡论文及程序和实验图片,非常好,值得下载(White papers and procedures and experimental images, very good, worth downloading)
- 2008-03-30 17:34:23下载
- 积分:1
-
deblur_code_1_2
对较真实的运动模糊图像进行恢复,此种运动模糊图像限于水平或垂直的运动模糊图像。
参考文献:Removing Camera Shake from a Single Image ,siggraph06(On the more realistic motion-blurred image restoration, such motion-blurred images limited to horizontal or vertical motion-blurred images. References: Removing Camera Shake from a Single Image, siggraph06)
- 2008-04-23 12:42:33下载
- 积分:1
-
VZ_HELP
说明: 全数字摄影测量系统 VirtuoZo 具有以下特点:
- 2011-03-26 12:41:11下载
- 积分: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
-
interactor
圆锥盒子工具,包括交互功能,可以实现放大缩小旋转等功能。(Tapered tool box, including the interaction capabilities)
- 2016-05-30 15:47:01下载
- 积分:1
-
VCPP-image-processing-chapter08(1)
VisualC++数字图像处理技术详解第2版光盘-第八章 分水岭分割算法(VisualC++ digital image processing technology Detailed Version 2 CD- Chapter VIII watershed segmentation)
- 2016-04-16 13:48:00下载
- 积分:1
-
dt_cwt-texture
基于纹理特征的图像检索源码,用双树复小波(DT-CWT)三级分解提取图像的纹理特征(Texture-based image retrieval source code, using dual tree complex wavelet (DT-CWT) to extract texture features three levels of decomposition)
- 2013-12-06 15:58:36下载
- 积分:1
-
inphase
多基线干涉合成孔径雷达干涉条纹的获取,通过两幅单视复图像进行配准,获取干涉相位(Multi-baseline interferometric synthetic aperture radar interferometry fringes of the acquisition, through two single look complex image registration, access to intervention phase)
- 2011-08-03 08:07:08下载
- 积分:1
-
Q-estimation
一种有效的匹配滤波估算地层品质因子的方法,精度较高,稳定性较好,值得借鉴(A kind of effective method of matched filtering to estimate formation quality factor, high precision, good stability, is worth using for reference)
- 2015-01-27 16:16:52下载
- 积分:1
-
1254896
利用小波变换的去噪程序!和中值滤波进行对比!(The use of wavelet transform denoising procedure! And median filtering comparison!)
- 2013-11-23 12:20:05下载
- 积分:1