Skip to content

OpenCV wrapper of graph-based segmentation (Felzenszwalb)

Notifications You must be signed in to change notification settings

fbz1993/segment_opencv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

segment_opencv

OpenCV wrapper of graph-based segmentation (Felzenszwalb)

Requirement

OpenCV 3.x

Compile

Run following command to create object file.

% make -f Makefile.txt

Usage

cv::Mat src_img = cv::imread(imgname, 1);
cv::Mat dst_img;
segment_image(src_img, 0.5, 500, 50, dst_img); // dst_img is CV_32SC. Each element is the index of segment.

About

OpenCV wrapper of graph-based segmentation (Felzenszwalb)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 85.1%
  • C 13.9%
  • Makefile 1.0%