Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

@berak Thanks for helping, I cannot post the answer here due to low karma points.

Here is the straightforward yet simple answer to my question,

(h, w) = image.shape[:2]
cv2.circle(image, (w//2, h//2), 7, (255, 255, 255), -1) #where w//2, h//2 are the required frame/image centeroid's XYcoordinates.

I was just not thinking out of the box previously, Cheers :)

click to hide/show revision 2
No.2 Revision

updated 2018-10-28 04:30:06 -0600

berak gravatar image

@berak Thanks for helping, I cannot post the answer here due to low karma points.

Here is the straightforward yet simple answer to my question,

(h, w) = image.shape[:2]
cv2.circle(image, (w//2, h//2), 7, (255, 255, 255), -1) #where w//2, h//2 are the required frame/image centeroid's XYcoordinates.

I was just not thinking out of the box previously, Cheers :)