I know that python does not support pointers! But recently I've noticed something about OpenCV-python! The following line will draw a circle on a given image with the specified center and radius,
cv2.circle(image, (x, y), r, (0, 0, 00), thickness=3)
according to the cv2.circle doc, the return value is None
. So all the changes happen on the given image. But we know that python doesn't support pointers! So if it is possible to do so, how!? Does any one can help or provide a link!