0

Is it better to implement blob(connected component) handling manually in openCV or are there any good libraries for the same? I found cvblob and cvBlobsLib? Are these libraries used on a standard scale?

Amal Antony
  • 6,477
  • 14
  • 53
  • 76
  • possible duplicate of [Blob extraction in OpenCV](http://stackoverflow.com/questions/4641817/blob-extraction-in-opencv) – Paul R May 23 '11 at 14:07

2 Answers2

2

I also looked into this and decided in the end to write my own CCL routine. It seems like a serious omission from OpenCV and no doubt a lot of people are "reinventing the wheel" as a result. Note however that you may be able to use findContours, depending on your exact requirements - see this question.

Community
  • 1
  • 1
Paul R
  • 208,748
  • 37
  • 389
  • 560
0

You should take a look at the new opencvblobslib. It has great features like multi core support.

rold2007
  • 1,297
  • 1
  • 12
  • 25