Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 913 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 913 Bytes

SuperPixel

Computes superpixels of an image.

Article

This work is based on the article : SLIC Superpixels.

Execution

python3.5 superpixel.py FileName.png -k int [-o resultFileName]

This command computes the k**2 superpixels of the given image and saves it in the result file.

Results

Here some results on the testing image :

With k = 5
5-5

With k = 10
10-10

With k = 50
50-50

With k = 100
100-100

Libraries

Needs numpy, scipy and sys. Compiled with python3.5