PatchMatch算法

PatchMatch算法

摘要

  • Paper: PatchMatch: A Randomized Correspondence Algorithm for Structural Image Editing.

  • 目的:寻找相似块,可以用于Image retargeting, Image reshuffling等。

  • 思想:通过随机初始化,只要有一个patch匹配正确,就可以传播给周围的patch,通过迭代,最终给所有的patch都找到最相似的匹配。

算法

  1. 初始化:随机初始化。
  2. 迭代:
    1. Propagation: 算法在偶数次对一个Patch查找其原对应点左(x-1,y)上(x,y-1)的Patch,奇数次查找右(x+1,y)下(x,y+1)。
    2. Random search: 加上一定的随机扰动,在一定范围内查找。

你可能感兴趣的:(Machine,Learning)