Ask Your Question

spyderespirt0's profile - activity

2020-10-01 00:26:17 -0600 received badge  Student (source)
2016-01-25 22:49:29 -0600 commented question Why do I keep getting rotated rect's when they are circles?

I'm not quite sure how to play with the ApproxPolyDP settings, here is what is in my program currently: CvInvoke.ApproxPolyDP(contour, approxContour, CvInvoke.ArcLength(contour, true) * .05, true); What would I tweak and what does that change?

2016-01-25 13:43:09 -0600 commented question How to detect an ellipse?

Okay, so how should I go about finding these half circles with lines?

2016-01-25 12:54:07 -0600 asked a question How to detect an ellipse?

I'm currently using Emgu CV, and I'm trying to locate a target such as the one below.image description

I attempted to use HoughCircle method to find the ellipses, but that isn't working for me; I suspect they are not "circular" enough. So how would I go about finding these ellipses?

2016-01-25 12:27:45 -0600 commented question Why do I keep getting rotated rect's when they are circles?

I am currently running the edge detector before the circle detection, but they don't interfere with each other at all. They are separate processes. What does running HoughCircles on the image have to do with non-existent rotated rectangles showing up?

2016-01-25 11:13:18 -0600 asked a question Why do I keep getting rotated rect's when they are circles?

I'm doing rectangle detection using canny edges and contour detection using Emgu CV (example). I keep getting rotated rect's even though the objects are circles, see below: image description

What could be causing this? Also why is it missing the entire white rectangle?