OpenCV Object Detection - Center Point - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T04:24:00Zhttp://stackoverflow.com/feeds/question/279410http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/279410/opencv-object-detection-center-point3OpenCV Object Detection - Center PointDavid McGraw2008-11-10T22:32:04Z2008-11-26T18:30:23Z
<p>Given an object on a plain white background, does anybody know if OpenCV provides functionality to easily detect an object from a captured frame? </p>
<p>I'm trying to locate the corner/center points of an object (rectangle). The way I'm currently doing it, is by brute force (scanning the image for the object) and not accurate. I'm wondering if there is functionality under the hood that i'm not aware of.</p>
<p><strong>Edit Details</strong>:
The size about the same as a small soda can. The camera is positioned above the object, to give it a 2D/Rectangle feel. The orientation/angle from from the camera is random, which is calculated from the corner points.</p>
<p>It's just a white background, with the object on it (black). The quality of the shot is about what you'd expect to see from a Logitech webcam.</p>
<p>Once I get the corner points, I calculate the center. The center point is then converted to centimeters.</p>
<p>It's refining just 'how' I get those 4 corners is what I'm trying to focus on. You can see my brute force method with this image: <a href="http://i228.photobucket.com/albums/ee295/AOC_Ethanael/can.png" rel="nofollow">Image</a></p>
http://stackoverflow.com/questions/279410/opencv-object-detection-center-point/279427#2794271Answer by Martin Beckett for OpenCV Object Detection - Center PointMartin Beckett2008-11-10T22:40:01Z2008-11-10T22:40:01Z<p>This is exactly what OpenCV is for!<br />
There are different techniques depending on your setup - do you know the size, orientation etc, how noisy is the image, is the rectangle obscured?</p>
http://stackoverflow.com/questions/279410/opencv-object-detection-center-point/279487#2794870Answer by Kenny for OpenCV Object Detection - Center PointKenny2008-11-10T22:56:51Z2008-11-10T22:56:51Z<p>It is usually called blob analysis in other machine vision libraries. I haven't used opencv yet.</p>
http://stackoverflow.com/questions/279410/opencv-object-detection-center-point/280898#2808982Answer by geometrikal for OpenCV Object Detection - Center Pointgeometrikal2008-11-11T13:43:01Z2008-11-13T00:49:44Z<p>OpenCV has heaps of functions that can help you achieve this. Download Emgu.CV for a C#.NET wrapped to the library if you are programming in that language.</p>
<p>Some methods of getting what you want:</p>
<ol>
<li><p>Find the corners as before - e.g. "CornerHarris" OpenCV function</p></li>
<li><p>Threshold the image and calculate the centre of gravity - see <a href="http://www.roborealm.com/help/Center%20of%20Gravity.php" rel="nofollow">http://www.roborealm.com/help/Center%20of%20Gravity.php</a> ... this is the method i would use. You can even perform the thresholding in the COG routine. i.e. cog_x += *imagePtr < 128 ? 255 : 0;</p></li>
<li><p>Find the moments of the image to give rotation, center of gravity etc - e.g. "Moments" OpenCV function. (I haven't used this)</p></li>
<li><p>(edit) The AForge.NET library has corner detection functions as well as an example project (MotionDetector) and libraries to connect to webcams. I think this would be the easiest way to go, assuming you are using Windows and .NET.</p></li>
</ol>
http://stackoverflow.com/questions/279410/opencv-object-detection-center-point/321692#3216924Answer by Ismael C for OpenCV Object Detection - Center PointIsmael C2008-11-26T18:30:23Z2008-11-26T18:30:23Z<p>There's already an example of how to do rectangle detection in OpenCV (look in samples/squares.c), and it's quite simple, actually.</p>
<p>Here's the rough algorithm they use:</p>
<pre><code>0. rectangles <- {}
1. image <- load image
2. for every channel:
2.1 image_canny <- apply canny edge detector to this channel
2.2 for threshold in bunch_of_increasing_thresholds:
2.2.1 image_thresholds[threshold] <- apply threshold to this channel
2.3 for each contour found in {image_canny} U image_thresholds:
2.3.1 Approximate contour with polygons
2.3.2 if the approximation has four corners and the angles are close to 90 degrees.
2.3.2.1 rectangles <- rectangles U {contour}
</code></pre>
<p>Not an exact transliteration of what they are doing, but it should help you.</p>