Open linyicheng1 opened 8 months ago
We found a typo that causes the right camera parameter in the binocular camera to be read incorrectly. In line 72 of file ORB_SLAM3/blob/master/include/Settings.h.
cv::Mat camera2DistortionCoef() {return cv::Mat(vPinHoleDistorsion2_.size(),1,CV_32F,vPinHoleDistorsion1_.data());}
should be
cv::Mat camera2DistortionCoef() {return cv::Mat(vPinHoleDistorsion2_.size(),1,CV_32F,vPinHoleDistorsion2_.data());}
We found a typo that causes the right camera parameter in the binocular camera to be read incorrectly. In line 72 of file ORB_SLAM3/blob/master/include/Settings.h.
should be