0

I finally managed to cmake and compile the cvblob projekt. I thought that it will give me a lib but instead I got a dll. I have the header file and a dll. How can I use them in my project?

MazzMan
  • 815
  • 1
  • 9
  • 15

1 Answers1

0
  1. avoid cvblob, it's outdated. it was great 5 years ago, but opencv in general has moved on to c++, and its current api can handle all of it without cvblob (which is using the deprecated c-api.)

  2. if you succeeded to compile it, there should have been at least a 'stub' lib to link to ( which will link your exe to the dll at runtime ). look again.

berak
  • 39,159
  • 9
  • 91
  • 89
  • What can I use instead of cvblob? – MazzMan Feb 11 '14 at 21:21
  • [findcontours](http://docs.opencv.org/modules/imgproc/doc/structural_analysis_and_shape_descriptors.html#findcontours) , [moments](http://docs.opencv.org/modules/imgproc/doc/structural_analysis_and_shape_descriptors.html#moments) , [simpleblobdetector](http://docs.opencv.org/modules/features2d/doc/common_interfaces_of_feature_detectors.html#simpleblobdetector) – berak Feb 11 '14 at 21:40