cv2 findChessboardCorners 不检测角点
cv2 findChessboardCorners does not detect corners
我想尝试 this tutorial and therefore used the code from here 来校准我的相机。
我用这张图片:
我唯一调整的是 chessboard_size = (14,9)
以便它与我的图像的角相匹配。
我不知道我做错了什么。我尝试了多个棋盘图案和相机,但仍然 cv2.findChessboardCorners 总是无法检测到角点。
任何帮助将不胜感激。
终于可以了。我必须设置 chessboard_size = (12,7)
然后它起作用了。我不得不计算水平和垂直角的内部数量。
我想尝试 this tutorial and therefore used the code from here 来校准我的相机。
我用这张图片:
我唯一调整的是 chessboard_size = (14,9)
以便它与我的图像的角相匹配。
我不知道我做错了什么。我尝试了多个棋盘图案和相机,但仍然 cv2.findChessboardCorners 总是无法检测到角点。
任何帮助将不胜感激。
终于可以了。我必须设置 chessboard_size = (12,7)
然后它起作用了。我不得不计算水平和垂直角的内部数量。