atduskgreg / opencv-processing

OpenCV for Processing. A creative coding computer vision library based on the official OpenCV Java API
Other
1.34k stars 464 forks source link

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

Open irealva opened 9 years ago

irealva commented 9 years ago

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 commented 8 years ago

interested in this also! thanks

f41ardu commented 7 years ago

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); }