Skip to content

Latest commit

 

History

History

vision

File list

How to install

# create virtual environment
python3 -m venv --system-site-packages

# install libraries
pip3 install requirements.txt

# install libraries specific to raspberry pi boards
pip3 install requirements_raspberry.txt

How to run

# use the following command to check your options
python3 main.py --help


# e.g to live stream the drone footage, run
python3 main.py --stream-video-to-app

# e.g to live stream the drone footage and detect aruco markers, run
python3 main.py --stream-video-to-app --detect-aruco

# e.g to detect aruco markers and publish the detections to ROS, run
python3 main.py --detect-aruco --using-ros

# e.g to send images from the vehicle to a laptop, then detect aruco markers with the laptop
# vehicle side
python3 main.py --stream-video-to-zmq

# laptop side
python3 main.py --receive-video-from-zmq --detect-aruco