Equivalent of OpenCV statement in Java using JavaCV
问题 I want to know how to construct the following C++ statement in OpenCV using JavaCV: float* p = (float*)cvGetSeqElem(circles, i); int radius = cvRound(p[2]); To get the Radius of a circle detected using cvHoughCircles(). Obviously Java doesn't use pointer so I have no idea how to do this in Java. The code I have so far so you can see it context: lines = cvHoughCircles(frame2, storage, CV_HOUGH_GRADIENT, 1, 50, 300, 60, 10, 600); for (int i = 0; i < lines.total(); i++) { //Would like the code