-
files
数字图像隐藏及提取研究分析论文、文献等。主要研究算法为LSB算法和DCT奇偶量化、DCT均值量化。(Digital Image Information Hiding and Extraction of analytical papers, literature. The main algorithm for the LSB algorithm and DCT parity quantization, DCT mean quantization.)
- 2012-04-27 14:06:39下载
- 积分:1
-
VC++_image_Code
说明: VC++6.0图像处理算法集:图象的几何变换、平滑(去噪声)、锐化、腐蚀、膨胀、细化算法、半影调、抖动、直方图修正、彩色变换、腐蚀,膨胀,细化等算法,并有可执行文件供试用,并附有配套电子收,是图像处理入门的好资料。(VC++ 6.0 image processing algorithms: image geometric transformation, smoothing (to noise), sharpening, corrosion, expansion, thinning algorithm, penumbral tune jitter histogram of the amendment, color conversion, corrosion, swelling, refinement algorithm, etc., as well as executable files for trial, together with supporting electronic collection, image processing is a good data entry.)
- 2008-11-20 23:20:31下载
- 积分:1
-
histeqgray
说明: 直方图均衡化,直方图均衡化vc++源代码(histogramequalization)
- 2009-09-03 23:52:55下载
- 积分:1
-
GeoTrans
图像的几何变换,基于VC++的MFC的。旋转、放大、缩小等(Image geometric transformation, based on the VC++ the MFC. Rotate, zoom in, zoom out, etc.)
- 2013-02-13 10:53:13下载
- 积分:1
-
DIB_USE
打开BMP图像 IHS Brovey图像融合(Open the BMP image IHS Brovey Image Fusion)
- 2010-06-28 14:10:45下载
- 积分:1
-
TemplateTrans
图像增强,包括图像的平滑、锐化、边缘识别等操作(Image enhancement, including image smoothing, sharpening, edge detection and other operations)
- 2010-05-22 13:47:53下载
- 积分: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
-
CT-tracking
一种简单高效地基于压缩感知的跟踪算法。首先利用符合压缩感知RIP条件的随机感知矩对多尺度图像特征进行降维,然后在降维后的特征上采用简单的朴素贝叶斯分类器进行分类。该跟踪算法非常简单,但是实验结果很鲁棒,速度大概能到达40帧/秒(A simple and efficient tracking algorithm based on compressed sensing. Firstly, with the random sensing matrix compressed sensing RIP conditions for multi-scale image feature dimension reduction, and then use the naive Bias classifier simple classification in the feature reduction after the. The tracking algorithm is very simple, but the results are robust, speed can reach 40 frames per second)
- 2014-01-10 11:45:54下载
- 积分:1
-
blur
本文是中值滤波的一些应用,个人觉得中值滤波比一些算子滤波效果要好得多(This article is median filtering applications, personal feel median filter is much better than some of the filtering effect of the operator)
- 2012-10-09 20:26:27下载
- 积分:1
-
Moravec
说明: 在VC中实现了使用Moravec算子对遥感影像进行特征点的提取,缺点是速度较慢。不过提取效果不错!(Implemented in VC using Moravec operator of remote sensing images feature point extraction, the disadvantage is slow. However, extracting good results!)
- 2011-03-30 20:47:21下载
- 积分:1