资源简介
基于criminisi算法的图像修复,采用的工具是matlab,修复速度较慢,可直接运行
代码片段和文件信息
/*
* A best exemplar finder. Scans over the entire image (using a
* sliding window) and finds the exemplar which minimizes the sum
* squared error (SSE) over the to-be-filled pixels in the target
* patch.
*
* @author Sooraj Bhat
*/
#include “mex.h“
#include
#include “matrix.h“
void bestexemplarhelper(const int mm const int nn const int m const int n
const double *img const double *Ip
const mxLogical *toFill const mxLogical *sourceRegion
double *best)
{
register int ijiijjii2jj2MNIJndxndx2mn=m*nmmnn=mm*nn;
double patchErr=0.0err=0.0bestErr=1000000000.0;
/* foreach patch */
N=nn-n+1; M=mm-m+1;
for (j=1; j<=N; ++j)
{
J=j+n-1;
for (i=1; i<=M; ++i)
{
I=i+m-1;
/*** Calculate patch error ***/
/* foreach pixel in the current patch */
for (jj=jjj2=1; jj<=J; ++jj++jj2)
{
for (ii=iii2=1; ii<=I; ++ii++ii2)
{
ndx=ii-1+mm*(jj-1);
if (!sourceRegion[ndx])
goto skipPatch;
ndx2=ii2-1+m*(jj2-1);
if (!toFill[ndx2])
{
err=img[ndx ] - Ip[ndx2 ]; patchErr += err*err;
err=img[ndx+=mmnn] - Ip[ndx2+=mn]; patchErr += err*err;
err=img[ndx+=mmnn] - Ip[ndx2+=mn]; patchErr += err*err;
}
}
}
/*** Update ***/
if (patchErr < bestErr)
{
bestErr = patchErr;
best[0] = i; best[1] = I;
best[2] = j; best[3] = J;
}
/*** Reset ***/
skipPatch:
patchErr = 0.0;
}
}
}
/* best = bestexemplarhelper(mmnnmnimgIptoFillsourceRegion); */
void mexFunction(int nlhsmxArray *plhs[]int nrhsconst mxArray *prhs[])
{
int mmnnmn;
double *img*Ip*best;
mxLogical *toFill*sourceRegion;
/* Extract the inputs */
mm = (int)mxGetScalar(prhs[0]);/*The value of the first real (nonimaginary) element of the mxArray.*/
nn = (int)mxGetScalar(prhs[1]);
m = (int)mxGetScalar(prhs[2]);
n = (int)mxGetScalar(prhs[3]);
img = mxGetPr(prhs[4]);/*The address of the first element of the real data*/
Ip = mxGetPr(prhs[5]);
toFill = mxGetLogicals(prhs[6]);/*mxGetLogicals()The address of the first logical element in the mxArray. The result is unspecified if the mxArray is not a logical array.*/
sourceRegion = mxGetLogicals(prhs[7]);
/* Setup the output */
plhs[0] = mxCreateDoubleMatrix(41mxREAL);
best = mxGetPr(plhs[0]);
best[0]=best[1]=best[2]=best[3]=0.0;
/* Do the actual work */
bestexemplarhelper(mmnnmnimgIptoFillsourceRegionbest);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-05-20 22:34 Criminisi\
文件 162139 2015-03-26 10:20 Criminisi\20.png
文件 136031 2015-03-26 10:20 Criminisi\201.png
文件 293 2015-04-30 21:37 Criminisi\Evaluate.m
文件 1063 2004-11-29 23:04 Criminisi\README.txt
文件 37938 2015-03-29 20:15 Criminisi\benggee_7.jpg
文件 2382 2015-04-06 14:14 Criminisi\bestexemplarhelper.asv
文件 2503 2015-04-30 11:56 Criminisi\bestexemplarhelper.c
文件 8536 2013-03-12 13:12 Criminisi\bestexemplarhelper.mexmaci64
文件 6656 2015-03-26 10:46 Criminisi\bestexemplarhelper.mexw32
文件 11264 2019-05-20 22:30 Criminisi\bestexemplarhelper.mexw64
文件 8928 2015-05-03 23:49 Criminisi\inpaint7.m
文件 506 2019-05-20 22:34 Criminisi\plotall.m
相关资源
- 欠定盲源分离经典程序
- iriscode虹膜识别MATLAB代码Libor Masek写的
- 提取语音特征短时能量,平均幅度、
- SAR图像去燥的Lee、frost、kuan算法
- CapsuleNet 的MATLAB 实现 求解mnist手写体
- TXT文件转换为BMP图像
- 自适应pid控制器设计及其在matlab中的
- matlab程序实现.vip
- ds-cdma系统的多用户检测matlab程序
- Kraken波导不变量计算matlab程序
- 三门问题matlab程序
- 中心差分法Matlab源程序
- 特征脸提取的matlab代码
- matlab源码包括遗传算法等等
- STBC——OFDM matlab
- 20M带宽高斯信道 Matlab 仿真
- 用MATLAB画齿轮,只要给出基圆半径,
- NNDA PDA JPDA IMM数据关联算法matlab代码
- 波束合成方向图的matlab程序
- 单神经元自适应PID控制器的研究及M
- matlab 实现的RSA加解密算法
- Logistic模型参数的matlab求解
- Henonmap的MATLAB实现
- 基于当前模型的UKF matlab程序
- Matlab正态分布随机数
- K-means聚类算法 matlab实现
- matlab2017 调用vs2017编译器补丁文件
- Matlab实现CORDIC算法
- Fast ICA matlab源代码
- 光纤激光器建模的matlab程序
评论
共有 条评论