Hi to the whole programmers society!
It has become habitual to me to get acknowledgement of every algorithm I employ in projects. And not long ago I implemented OpenCV library methods to detect contours within input frame as well as to draw bounding rectangle around detected object. So I came up with question: what algorithm is actually used by OpenCV when calling appropriate methods? (I mean exacty cv2.findContours and cv2.boundingRect methods)
Thank you in advance.
According to OpenCV documentation findContours uses "Suzuki, S. and Abe, K., Topological Structural Analysis of Digitized Binary Images by Border Following"
I didn't find description of boundingRect algorithm but found this file in opencv repo
So it seems that boundingRect just finds minimum and maximum coordinates of input set of points
PS Sorry for my poor English