labviros / is-aruco-calib

Camera calibration using ArUco markers
1 stars 3 forks source link

Error calibrating the cameras #2

Open julianlbs opened 5 years ago

julianlbs commented 5 years ago

When I try to run the command: ./build/src/is/calibration-tools/calibrate-aruco/calibrate-intrinsic ./etc/conf/calibrate-aruco.json

I see the following error:

(env) julian@is:~/docker/is-aruco-calib$ ./build/src/is/calibration-tools/calibrate-aruco/calibrate-intrinsic ./etc/conf/calibrate-aruco.json
./build/src/is/calibration-tools/calibrate-aruco/calibrate-intrinsic: error while loading shared libraries: libboost_filesystem.so.1.66.0: cannot open shared object file: No such file or directory
felippe-mendonca commented 5 years ago

This is probably a problem with environment variables path, It's common on ubuntu 18. To address this issue, run the command before execute the any generated binary.

$ source build/activate_run.sh

It'll activate a virtual environment with the variables needed properly set.