how to refine or blur or smooth just the edges?

后端 未结 1 1917
名媛妹妹
名媛妹妹 2020-12-10 08:29

Is it possible to refine or blur just the edges in an image with the white background ? I was thinking to get an edge mask of the image ( i already got it). After that use t

相关标签:
1条回答
  • 2020-12-10 09:20

    If you have an edge mask of the image, do that:

    1. Dilate(edgemask)
    2. Copy(source: original, destination: blurred)
    3. Smooth(blurred)
    4. Copy(source: blurred, destination: original, mask: edgemask)

    And your "original" image will be blurred.

    0 讨论(0)
提交回复
热议问题