Hi, I set frame width and height to 1920 and 1080 while calibrating the cameras.
Do I have to comment this part in the code? as my calibration parameters are set to the above resolution?
`#crop to 720x720.
#Note: camera calibration parameters are set to this resolution.If you change this, make sure to also change camera intrinsic parameters
if frame0.shape[1] != 720:
frame0 = frame0[:,frame_shape[1]//2 - frame_shape[0]//2:frame_shape[1]//2 + frame_shape[0]//2]
frame1 = frame1[:,frame_shape[1]//2 - frame_shape[0]//2:frame_shape[1]//2 + frame_shape[0]//2]
`
Hi, I set frame width and height to 1920 and 1080 while calibrating the cameras.
Do I have to comment this part in the code? as my calibration parameters are set to the above resolution?