-
8-(1)
图像修复是对图像中破损区域进行信息填充,以减少图像破损所带来的信息损失的过程。
传统的图像修复方法需要依赖图像的具体结构来制定相应的修复方法,压缩感知理论的提出,使得可以利
用信号的稀疏性来对图像进行修复。基于K 奇异值分解(KSVD)与形态学成分分析(MCA,Morphological
Component Analysis)的图像修复方法首先采用形态学成分分析方法对破损图像进行特征分析,将其分解
为结构部分和纹理部分;然后基于学习型字典KSVD分别对这两部分进行过完备字典训练;最后利用训练得
到的字典实现对破损图像的修复。相比于传统的图像修复方法,该方法具有适应性强、修复效果好等优点(Image inpainting is to fill the missing data in corrupted images and thus to reduce
the information loss of damaged image. Traditional inpainting algorithms are dependent on specific
structure of target images compressive sensing theory makes is possible to realized image
inpainting with signal sparsity. This paper proposes a novel inpainting algorithm based on KSVD
and MCA algorithm, which first decomposes the image into texture part and structure part, and
then trains the two dictionaries for these two parts with KSVD and reconstructs the original image
with these two trained dictionaries. Experiment indicates that the proposed algorithm is of better
adaptability and performance as compared with traditional algorithms.)
- 2020-07-31 15:08:38下载
- 积分:1
-
M_nlms
该程序是一种最小均方误差滤波算法的matlab实现,主要应用于干扰对消方面(The program is a minimum mean square error filtering algorithm matlab realize, mainly used in interference cancellation)
- 2013-04-12 12:28:22下载
- 积分:1
-
视频截图的类源码下载
视频截图的类源码下载
- 2013-08-30下载
- 积分: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
-
图像融合可以用的PCNN工具箱 70754311PCNN_toolbox
图像融合可以用的PCNN工具箱,可以使用在图像融合里(PCNN Toolbox for Image Fusion)
- 2020-06-24 03:20:01下载
- 积分:1
-
new_SPIHT
最新的用matlab实现的SPIHT算法,实现对图像的高性能压缩。(Matlab using the latest achievement of SPIHT, the realization of high-performance image compression.)
- 2007-06-21 16:27:52下载
- 积分:1
-
HDR_Toolbox_current
应用Matlab写的HDR图像处理完整工具,包括:合成HDR图像、TMO等,路径完整,亦包括示例、例图。非常有用的学习工具。(It s a totally codes of HDR image processing, including HDRI generation, TMO, etc. Very useful tool for study.)
- 2021-01-11 21:58:48下载
- 积分:1
-
snr
求信噪比的MATLAB源代码 很实用的函数(Signal to noise ratio for the MATLAB source code is very useful function)
- 2008-06-19 11:28:15下载
- 积分:1
-
gdal1.4.5
很有用的gdal库,并且已经编译好。请多多指教!(It is a very good resource!Please download!!)
- 2011-12-08 09:31:56下载
- 积分:1
-
thin-plate-splines
tps变换算法,一个很好的MATLAB程序,用于图像拼接(tps transform algorithm, a good MATLAB programs for image stitching)
- 2011-09-02 13:23:20下载
- 积分:1