Open irealva opened 9 years ago
interested in this also! thanks
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); }
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!