-
yuyanjiaozheng
实现对鱼眼图像的校正 我自己执行过 可以使用(it can realise the rectification of the fish eye image )
- 2010-06-04 17:26:26下载
- 积分:1
-
affine
说明: 基于最小二乘法的仿射变换
matlab实现(Least square method based on the realization of affine transformation matlab)
- 2009-08-12 16:26:48下载
- 积分:1
-
polsar
polsarpro软件的使用说明,适合处理极化SAR图像。(polsarpro the software instructions for dealing with polarization SAR images.)
- 2009-11-21 17:21:07下载
- 积分:1
-
KSVD_Matlab_ToolBox1
用奇异值分解的方法实现图像的去噪,并且与其他的方法进行比较,较之其他的方法有了明显的提升(To eliminate the noise from signals and compared to others mothods,an depressing
effect is gotten)
- 2020-12-11 11:19:18下载
- 积分:1
-
lixiaomao
this code is for the paper of image segmentation based on level set methods. in this paper improves Tony Chan s paper and improves the speed.
- 2012-04-28 17:18:16下载
- 积分:1
-
DCT-digital-watermarking-technology
提出了一种基于纠错编码的DCT域数字水印算法,该算法在检测时不需要原始图像,实现了盲检。并且对水印图像进行了利用超混沌置乱处理,提高了安全性能和抗攻击能力。纠错编码的引入使水印抗攻击能力明显增强。
(DCT digital watermarking algorithm based on error correction coding, the algorithm detected without the original image, blind. And watermark image of the the hyperchaotic scrambling process, improve the safety performance and anti-attack capability. The introduction of error correction coding watermark anti-attack capability significantly enhanced.)
- 2021-04-28 17:38:44下载
- 积分:1
-
ACO-edge-detection-master
说明: 利用蚁群算法对图片进行边缘检测,该方法速度较慢但是鲁棒性高(The ant colony algorithm is used to detect the edge of the image, which is slow but robust)
- 2019-12-02 16:35:33下载
- 积分: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
-
quzao
对比了常见的几种去噪方法,含中值滤波,均值滤波,维纳滤波,高斯滤波,以及三种形态学滤波(一般的,改进的,多结构元素形态学滤波)(Comparison of several common Denoising containing median filtering, mean filtering, Wiener filtering, Gaussian filtering, as well as three morphological filtering (generally improved, multi-structural elements morphological filtering))
- 2013-04-10 10:10:18下载
- 积分:1
-
06035777
文献,基于融合和聚类的遥感图像变化检测技术(Literature, based on remote sensing image fusion and change detection clustering technology)
- 2013-12-09 22:53:30下载
- 积分:1