Skip to content

ahban/pi-slic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PI-SLIC - high-performance superpixel segmentation toolbox for C++

This program is a C++ toolbox for generating superpixel from image. For achieving high-performance computation, it support CUDA acceleration. The average time for a 640x480 image is 40 ms. You can easly integrated the code to you embedded program. The core functions are extracted from vlfeat (http://www.vlfeat.org/) and gSLIC (https://github.com/painnick/gSLIC). We fix some problems of their code and integrated into a package.

Requirements:

  • OpenCV 2.4.9 (or above)
  • CUDA 5.0 (or above)
  • PIL (included in the code at ./Thirdparty/PIL)

Compile:

1. build PIL

cd ./Thirdparty/PIL
make

3. build pi-slic

make

Usage:

# do superpixel with GPU
./test_slic useGPU=1

# do superpixel without GPU
./test_slic useGPU=1

Plateform:

Only test on LinuxMint 17.1 64-bit, may be other distributions are also support.

Screenshot:

-alt text -alt text

Project homepage:

http://www.adv-ci.com/blog/source/pi-slic/

About

high-performance superpixel segmentation toolbox for C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 64.8%
  • C++ 31.8%
  • Cuda 1.9%
  • Other 1.5%