-
dwt_svd_mfile
基于SVD和混沌加密的DWT。程序里包含了直方图攻击,锐化,剪切,高斯噪声等攻击。(Based the SVD and chaotic encryption DWT. The program contains a histogram attack, sharpening, shear, Gaussian noise attack.)
- 2012-10-23 15:50:08下载
- 积分:1
-
ssim
图像处理算法质量评估,图像结构相似度(ssim)评价的matlab实现,并附带原始论文pdf(This is an implementation of the algorithm for calculating the Structural SIMilarity (SSIM) index between two images. Please refer to the following paper:
Z. Wang, A. C. Bovik, H. R. Sheikh, and E. P. Simoncelli, "Image quality assessment: From error measurement to structural similarity" IEEE Transactios on Image Processing, vol. 13, no. 1, Jan. 2004.)
- 2020-06-16 10:00: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
-
tracker_release2
PAMI2015 基于核的相关滤波跟踪方法 可以在32位机上运行 因为包含gradientMex.mex32文件( Kernelized Correlation Filter PAMI2015 the code can run on 32-bit computer because it contains file gradientMex.mex32.)
- 2014-10-21 21:30:16下载
- 积分:1
-
LSH_MATLAB
Visual Tracking via Locality Sensitive Histograms.基于局部敏感直方图的目标跟踪算法,该算法在CVPR2013中出现,算法较简单但却非常有效,值得各位研究视觉跟踪算法的同行研究(Visual Tracking via Locality Sensitive Histograms)
- 2013-10-03 22:16:22下载
- 积分:1
-
brox
效果很好的光流法(optical flow),希望对大家有帮助。(Good effect of optical flow (optical flow), we want to help.)
- 2011-07-21 16:51:55下载
- 积分:1
-
radon
radon算法opencv实现,能够很好的实现图像的水平旋转矫正。( implementing the radon by opencv.)
- 2021-04-21 16:58:50下载
- 积分:1
-
src
SIFT代码,多用于图像拼接,匹配精度高(sciences code used for image stitching, matching high accuracy)
- 2021-04-11 22:08:57下载
- 积分:1
-
attachment
基于MATLAB图像处理的车辆检测与识别,很基础的,入门(moving detect)
- 2020-06-29 17:40:02下载
- 积分:1
-
AMDGPU
介绍图像处理技在AMD上的GPU的处理方案,加速高清,快速度(The processing scheme, image processing technology on AMD GPU accelerated HD, speed)
- 2013-07-22 17:28:48下载
- 积分:1