I have found this post OpenCV findChessboardCorners very slow, but it does not answer my question fully.
I am running a camera calibration tool on a raspberry pi and it takes a huge amount of time to detect chessboard corners in full resolution images. I currently rescale them, but the computed parameters cannot be used for a full-sized image.
One thing I was thinking was to detect corner in an images 4 times smaller and then multiply the corner coordinates by 4, but I don't quite the same results.
Do you think is there a way to speed up or plug another corner detection?
I am using python implementation (cv2)
Thanks