-
image_enhangce_value
图像增强效果评价指标:1.欧拉范数误差指标 2.等效视数 3.边缘保持指数 4.对比度增强指数(Evaluating results of image enhancement: 1. Oula Fan error index number 2. Equivalent number of 3. Edge-preserving index 4. Contrast enhancement index)
- 2011-05-16 09:14:13下载
- 积分:1
-
ACA_FCM
蚁群算法应用在图像分割中,matlab程序(Ant colony algorithm is applied to image segmentation, matlab program)
- 2013-03-30 12:31:13下载
- 积分:1
-
object-tracking-based-on-TOD
基于纹理和边缘方向特征融合的目标跟踪程序代码,是基于mean shift框架的(This paper proposes a powerful and robust local descriptor,called textureorientation
descriptor(TOD). TOD consists of two components: texture and
orientation. Considering that the human shape shows more short, fragmentary
and vertical edges, the proposed TOD descriptor encodes the spatial information
of pedestrian image. We combine the proposed TOD representation
model with mean shift framework to perform pedestrian tracking. Results
from experiments show the improved performance of the proposed algorithm,
in the scenarios of heavy occlusions, illumination variations and similar
objects interference, when compared with the other descriptors based trackers.)
- 2012-09-01 14:28:50下载
- 积分:1
-
SpectrumEnvelopeRemoving
该代码采用IDL语言实现了从光谱库读取高光谱曲线,并且去除其包络。这是高光谱图像处理时一个重要的预处理技术。(The code using IDL language library to read from the spectrum of high spectral curve, and the removal of the envelope. It is time hyperspectral image processing is an important pre-processing techniques.)
- 2021-03-24 14:59:15下载
- 积分:1
-
gongji
对嵌入水印的图象进行不同的攻击
添加噪音,滤波,剪切,压缩,旋转45度(Watermark on the images embedded in a different attack to add noise, filter, shear, compression, rotating 45 degrees)
- 2009-05-12 22:31:37下载
- 积分:1
-
Chapter3
图形处理,Visual C++图形编程技巧与实例源代码3(Graphics Visual C++ graphics programming techniques and source code examples
3)
- 2012-02-29 11:16:21下载
- 积分:1
-
calibration
上传程序为利用vc编写的近景摄影测量程序,包括影像匹配,基本矩阵生成,核显影像生成等等。(Upload the program for the use of close-range photogrammetry vc written procedures, including image matching, basic matrix generation, nuclear generation, and so was the image.)
- 2016-10-06 20:23:51下载
- 积分:1
-
cocahome_20100309235237
图像分割,二维图像分割,ostu算法,阈值分割(Segmentation, two-dimensional image segmentation, ostu algorithm, thresholding)
- 2010-05-30 23:30:55下载
- 积分: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
-
shuzituxiangzuoye-
对遥感图像进行无监督分类,形成决策树,实现地物的标定(Unsupervised classification of remote sensing images to form a decision tree, the calibration of surface features)
- 2012-05-24 17:09:02下载
- 积分:1