Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a circle Hough Transform in this library? #89

Open
irealva opened this issue Nov 17, 2015 · 2 comments
Open

Is there a circle Hough Transform in this library? #89

irealva opened this issue Nov 17, 2015 · 2 comments

Comments

@irealva
Copy link

irealva commented Nov 17, 2015

I can see an example for it in your history: https://github.com/atduskgreg/opencv-processing/pull/76/files#diff-56336d9ad0c552d514d8b315c30fbbb3

Thanks for the info!

@ojack
Copy link

ojack commented May 7, 2016

interested in this also! thanks

@f41ardu
Copy link

f41ardu commented Jan 20, 2017

opencv.findCircles(); The function findCircles doesn't exist.
What is the alternative?
My current workaround but not finalised yet is as follows:

for (Contour c : opencv.findContours()) {
Contour hull = c.getConvexHull();
Rectangle box = hull.getBoundingBox();
rect(box.x, box.y, box.width, box.height);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants