This section guides you through setting up the development environment necessary to run this project. Follow these steps to ensure that your setup is correct.
apriltag requires CMake to build some of its components. Install CMake using the appropriate command for your operating system:
sudo apt update
sudo apt install cmakesudo dnf install cmakebrew install cmakeCreating a Conda environment is recommended to manage the project's dependencies efficiently:
conda create --name myenv python=3.8 # You can change `myenv` to any name you prefer
conda activate myenvInstall all the required Python packages using Conda or pip. If you are using Conda, run:
pip install -r requirements.txtEnsure that all packages are installed correctly by running the following command:
python -c "import cv2, numpy, apriltag; print('All packages installed correctly!')"You should see "All packages installed correctly!" printed if the installation was successful.