Closed civp closed 5 years ago
stereo_cameras.py line 86 left_frame = frame[:, :width/2, :] should be left_frame = frame[:, :width//2, :] to avoid TypeError when the width is not even
left_frame = frame[:, :width/2, :]
left_frame = frame[:, :width//2, :]
Makes sense to me. Would you be willing to put this into a PR?
stereo_cameras.py line 86
left_frame = frame[:, :width/2, :]
should beleft_frame = frame[:, :width//2, :]
to avoid TypeError when the width is not even