Skip to content

Commit

Permalink
fix kalibr_calibrate_cameras app for a single camera. Otherwise the k…
Browse files Browse the repository at this point in the history
…alibr stops for lack of overlap between cameras
  • Loading branch information
weblucas committed Dec 6, 2023
1 parent c4a1d89 commit a9d18b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def main():
#initialize the calibration graph
graph = kcc.MulticamCalibrationGraph(obsdb)

if not graph.isGraphConnected():
if not graph.isGraphConnected() and len(cameraList)>1:
obsdb.printTable()
print("Cameras are not connected through mutual observations, please check the dataset. Maybe adjust the approx. sync. tolerance.")
graph.plotGraph()
Expand Down

0 comments on commit a9d18b0

Please sign in to comment.