pythonopencvimage-processingcomputer-vision

How to transform the left image into the right image?


I want to transform the image on the left into the image on the right. How can I achieve this?

The possible transformation operations may include:

The image on the right may be obtained through a combination of these operations.

enter image description here

Original Pic:

enter image description here

Could you provide me with some ideas? Thank you very much!


I have tried each one of them and some combinations, but none of them produced a result similar to this, as shown in the image below.

enter image description here enter image description here


Solution

  • One way to do that in Python/OpenCV is to convert to HSV. Then get the Hue channel and blur it.

    enter image description here