I have just discovered CvBlobsLib that can be a bless but it sadly uses IplImage.
Is there any chance that there is a new cv::Mat-style edition I just don’t happen to find it?
EDIT:
It turned out that I happened to discover 2 distinct libraries, CvBlobsLib and CvBlobs, yeehaa. 🙂
I saw CvBlobsLib is less used than cvBlobs, that is NOT on opencv willowgarage but on google code. I welcome answers for both libraries, though, as both work with IplImage. 🙂
EDIT: I’m talking about cvBlobs in this answer, sorry that I messed it up with cvBlobsLib …
I’ve been looking for this too, but didn’t came up with any library, which uses the new image structure.
But actually you can always do this:
IplImage iplImg = mat;and just use&iplimgwherever you need anIplImage*.I used cvBlobs this way successful in a few projects: