-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpatchmatch.m
More file actions
18 lines (17 loc) · 1.04 KB
/
patchmatch.m
File metadata and controls
18 lines (17 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%PATCHMATCH - Matches patches in an image and gives an NN-field
% nnf = patchmatch(img_src, img_dst, patchsize, nnk, searchradius, mask, searchstep, includeself, incomplete, threshold, disttype)
% img_src - input source image (RGB/Grayscale in double datatype)
% img_dst - input destination image (RGB/Grayscale in double datatype) (default - img_src)
% patchsize - size of search patch (default - [5 5])
% nnk - number of nearest neighbours (default - 5)
% searchradius - patch search radius (default - 10)
% mask - patch distance weight mask (size - patchsize X patchsize)(default - ones)
% searchstep - patch search step (default - 2)
% includeself - 0/1 (default - 1)
% incomplete - allow nan values in img - 0/1 (default - 0)
% threshold - threshold for incomplete image input (default - 0)
% disttype - distance type, 0 - LARK / 1 - l1 / 2 - l2 / 3 - poisson (default - 2) (LARK not completely implemented)
% nnf - output nearest neighbour field
%
% Author: Sk. Mohammadul Haque
%