I am trying to calibrate the camera using OpenCV tools as follows in this guide .
The problem is that the findChessboardCorners function cannot find a single chessboard in the images I tried. I used a lot of them - even a simple checkerboard pattern. In any case, nothing was found.
Here is the code (almost the same as from the link above):
import numpy as np import cv2 import glob
The only change I made was that I switched from .jpg to .png files - for some reason, the imread function cannot read jpg images (this is another strange problem for another topic).
Thanks in advance for your advice!
Image ref:

dd210 source share