-
Pinjie
图像拼接,用于合成全景图像,VC++开发环境,C++实现。(Image Stitching)
- 2012-11-21 12:13:40下载
- 积分:1
-
ppbNakagami
处理Gamma乘性噪声的PPB方法,考虑了非局部patch的相似性,可处理SAR图像去噪。(The PPB method for multicative noise removal, which based on the Probabilistic Patch similarity.)
- 2021-04-12 18:18:57下载
- 积分:1
-
FKFilter
FK滤波分析,设计窗口!!!!!!!!!!!(FK filtering analysis, design window! ! ! ! ! ! ! ! ! ! !)
- 2013-01-21 20:24:37下载
- 积分: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
-
0451
说明: 《visual C++ 开发经验技术宝典》图像锐化处理,主要是将图像的亮度增加,颜色的鲜艳感增强。("Visual C++ development experience Technical Collection," Image sharpening, mainly to increase the brightness of the image, bright sense of color enhancement.
)
- 2011-02-21 15:16:27下载
- 积分:1
-
zoom
C语言实现bmp图像放大缩小,24位bmp图像(The C language bmp image zoom, 24 bmp image)
- 2012-10-13 20:06:16下载
- 积分:1
-
ex26aview1
基于最小二乘法的相位解缠VC++算法
(least squares method based on the VC Phase Unwrapping Algorithms)
- 2020-06-28 19:00:01下载
- 积分:1
-
testArea
一个求多边形面积的程序
也许会对某些人有用(Area of a polygon for the procedure may be useful to some people)
- 2007-11-16 03:45:14下载
- 积分:1
-
ImageMatch
遥感摄影测量专业相邻相片同名点之间的匹配,交互界面,可以人工选点(Remote Sensing Photogrammetry Professional adjacent matching interface point between the photo of the same name, you can manually choose the point)
- 2014-04-29 00:59:22下载
- 积分:1
-
DDBOpen-show-save
DDB 图像编程 实现图像的打开,保存,显示,一般处理等功能(DDB image programming to achieve the image open, save, display, general processing and other functions)
- 2013-09-15 11:34:36下载
- 积分:1