OpenCV C++/Obj-C: Proper object detection
问题 As some kind of "holiday project" I'm playing around with OpenCV and want to detect and measure stuff. Current workflow (early stage - detection): Convert to grayscale (cv::cvtColor) Apply Adaptive threshold (cv::adaptiveThreshold) Apply canny edge detection (cv::Canny) Finding contours (cv::findContours) My outcome is kinda crappy and I'm not sure what's the right direction to go. I already got cvBlob working under my current setup (OSX 10.7.2, Xcode 4.2.1) is it a better way to go? If so,