sightcalibrator command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sightcalibrator: command not found
or when using sudo you get the following error message
sudo: sightcalibrator: command not found
Solutions to sightcalibrator: command not found
How To Fix sightcalibrator: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sightcalibrator is provided by sightcalibrator package.
sightcalibrator is:
User-friendly application to calibrate mono and stereo cameras.
SightCalibrator can take images, video files, or any supported camera device as input. It detects the presence of a checkboard in images. The parameters of the checkboard can be customized. Individual images can then be marked to be used in the computation of the calibration. Last, the intrinsic and extrinsic parameters can be exported in OpenCV format, Yaml or XML.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sightcalibrator
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sightcalibrator.
sudo apt -y install sightcalibrator
Or if you have aptitude installed you can use the following command.
sudo aptitude install sightcalibrator
Summary
In this tutorial we learn how to fix sightcalibrator command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.