admin管理员组文章数量:1130349
1.根据https://github/ethz-asl/kalibr/issues/364提示:
修改aslam_offline_calibration/kalibr/python/kalibr_camera_calibration/MulticamGraph.py
def isGraphConnected(self):
#check if all vertices are connected
#return self.G.adhesion()
if self.numCams == 1:
# Since igaph 0.8, adhesion correctly returns 0 for the non-connected one cam case.
# which evaluates to false later on. So we skip the check and return true in the one camera case.
return True
else:
#check if all vertices are connected
return self.G.adhesion()1.根据https://github/ethz-asl/kalibr/issues/364提示:
修改aslam_offline_calibration/kalibr/python/kalibr_camera_calibration/MulticamGraph.py
def isGraphConnected(self):
#check if all vertices are connected
#return self.G.adhesion()
if self.numCams == 1:
# Since igaph 0.8, adhesion correctly returns 0 for the non-connected one cam case.
# which evaluates to false later on. So we skip the check and return true in the one camera case.
return True
else:
#check if all vertices are connected
return self.G.adhesion()本文标签: 相机ConnectedCamerasKalibrcheck
版权声明:本文标题:Kalibr单目相机标定:Cameras are not connected through mutual observations, please check the data 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/jiaocheng/1755028885a2755507.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论