PatchMatch is an algorithm used to quickly find correspondences (or matches) between small square regions (or patches) of an image. It has various applications in image editing, such as reshuffling or removing objects from images or altering their aspect ratios without cropping or noticeably stretching them. PatchMatch was first presented in a 2011 paper by researchers at Princeton University.[1]
Algorithm
The goal of the algorithm is to find the patch correspondence by defining a nearest-neighbor field (NNF) as a function of offsets, which is over all possible matches of patch (location of patch centers) in image A, for some distance function of two patches . So, for a given patch coordinate in image and its corresponding nearest neighbor in image , is simply . However, if we search for every point in image , the work will be too hard to complete. So the following algorithm is done in a randomized approach in order to accelerate the calculation speed.
The algorithm has three main components. Initially, the nearest-neighbor field is filled with either random offsets or some prior information. Next, an iterative update process is applied to the NNF, in which good patch offsets are propagated to adjacent pixels, followed by random search in the neighborhood of the best offset found so far. Independent of these three components, the algorithm also uses a coarse-to-fine approach by building an image pyramid to obtain the better result.
Initialization
When initializing with random offsets, we use independent uniformsamples across the full range of image . This algorithm avoids using an initial guess from the previous level of the pyramid because in this way the algorithm can avoid being trapped in local minima[clarification needed].
Iteration
After initialization, the algorithm attempted to perform iterative process of improving the . The iterations examine the offsets in scan order (from left to right, top to bottom), and each undergoes propagation followed by random search.
Propagation
We attempt to improve using the known offsets of and , assuming that the patch offsets
are likely to be the same. That is, the algorithm will take new value for to be .
So if has a correct mapping and is in a coherent region , then all of below and to the right of will be filled with the correct mapping. Alternatively, on even iterations, the algorithm search for different direction, fill the new value to be .
Random search
Let , we attempt to improve by testing a sequence of candidate offsets at an exponentially decreasing distance from
where is a uniform random in , is a large window search radius which will be set to maximum picture size, and is a fixed ratio often assigned as 1/2. This part of the algorithm allows the to jump out of local minimum through random process.
Halting criterion
The often used halting criterion is set the iteration times to be about 4~5. Even with low iteration, the algorithm works well.