hough circle opencv coordinates of circles' center -


i using this page identify circles , centers on images. know top left hand corner 0,0 point. noticed x , y coordinates returned circles' center positive. why that? shouldn't y coordinate negative? talking circles[i][1] values original code.

no. correct.

in computer vision, usually, y-axis inverted.

opencv follows coordinate system:

enter image description here

image here.


Comments