How is the photoshop cutout filter implemented?

前端 未结 9 947
日久生厌
日久生厌 2021-02-03 13:21

Photoshop has a lot of cool artistic filters, and I\'d love to understand the underlying algorithms.

One algorithm that\'s particularly interesting is the Cutout filter

9条回答
  •  我在风中等你
    2021-02-03 13:30

    Edge detection is usually a Sobel or Canny filter then the edges are joined together with a chain code.
    Look at something like the OpenCV library for details

提交回复
热议问题