Skip to the content.

Detect Edges of Planet

Back to OpenCV

Find the outline of a planet using an edge detection kernel and convolution. You may need to apply another algorithm first, like kmeans, to reduce noise.

As an additional challenge, overlay the outline on the original image.

My Solution

Starting Image

image

Download Image

Example Solution

Outline:

image

Overlayed:

image

My Solution