Maria Shuvelle
Maria Shuvelle

Reputation: 97

How is segmentation useful?

Recently I began to study computer vision. In a series of text, I encountered "segmentation" which creates a group of pixels (super-pixels) based on pixel features.

Here is an example:

enter image description here

But, I'm not sure how do they use super-pixels at the first place. Do we use it for paint-like visualization? Or some kinds of object detection?

Upvotes: 1

Views: 284

Answers (2)

Bashar Haddad
Bashar Haddad

Reputation: 368

Usually super pixel alone is not enough to perform segmentation. It can be the first step in performing segmentation. But further processing need to be done to perform segmentation. In one of the papers I have read they use seam processing to measure the energy of the edges. There is another paper for jitendra Malik about using super pixels in segmentation.

Upvotes: 1

Humam Helfawi
Humam Helfawi

Reputation: 20274

The segmentation you did for this image is useless since it does not split any thing useful. But consider this segmentation for example:

enter image description here

It splits the duck and the other objects from the background.

You can here find some useful application of Image Segmentation : https://en.wikipedia.org/wiki/Image_segmentation#Applications

Upvotes: 2

Related Questions