Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 6 years ago.
I plan to start experimenting with blobs as a C++ user, with some experience at cv::Mat's from the OpenCV.
Now the question is, which blobs library should I use if at all?
I have seen these alternatives so far:
- cvBlobs (on google code) -- that is a c library really, working with IplImage so it needs serious adaptation to c++.
- CvBlobsLib (on willowgarage opencv webpage) -- that looks like a c++ library but has quite bad docs with plenty of stuff left unexplained and barely any code example.
- I have seen cv::findContours, cv::moments and cv::drawContours in the OpenCV 2.4.3 library.
What do you suggest as an expert? My pressing issue: what will the new OpenCV not cover of cvBlobs on google code?
Here is the link for the follow-up question on this subject, where I ask about SimpleBlobDetector. You might be interested.