An assistive follow trolley project utilising AI running on the NVIDIA Jetson Nano. This code accompanies an article series on DesignSpark
Original FastMOT demonstration by GeekAlexis
- CUDA >= 10
- cuDNN >= 7
- TensorRT >= 7
- OpenCV >= 3.3
- PyCuda
- Numpy >= 1.15
- Scipy >= 1.5
- TensorFlow < 2.0 (for SSD support)
- Numba == 0.48
- cython-bbox
- RPi.GPIO
Make sure to have JetPack 4.4+ installed and run the script:
$ scripts/install_jetson.sh
Make sure to have nvidia-docker installed. The image requires an NVIDIA Driver version >= 450. Build and run the docker image:
$ docker build -t fastmot:latest .
$ docker run --rm --gpus all -it -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY fastmot:latest
This includes both pretrained OSNet, SSD, and my custom YOLOv4 ONNX model
$ scripts/download_models.sh
Modify compute here to match your GPU compute capability for x86 PC
$ cd fastmot/plugins
$ make
Only required if you want to use SSD
$ scripts/download_data.sh
- MIPI CSI camera:
$ python3 app.py --input_uri csi://0 -gm
More options can be configured in cfg/mot.json
- Set
resolutionandframe_ratethat corresponds to the source data or camera configuration (optional). They are required for image sequence, camera sources, and MOT Challenge evaluation. List all configurations for your USB/CSI camera:$ v4l2-ctl -d /dev/video0 --list-formats-ext - To change detector, modify
detector_type. This can be eitherYOLOorSSD - To change classes, set
class_idsunder the correct detector. Default class is1, which corresponds to person - To swap model, modify
modelunder a detector. For SSD, you can choose fromSSDInceptionV2,SSDMobileNetV1, orSSDMobileNetV2 - Note that with SSD, the detector splits a frame into tiles and processes them in batches for the best accuracy. Change
tiling_gridto[2, 2],[2, 1], or[1, 1]if a smaller batch size is preferred - If more accuracy is desired and processing power is not an issue, reduce
detector_frame_skip. Similarly, increasedetector_frame_skipto speed up tracking at the cost of accuracy. You may also want to changemax_agesuch thatmax_age × detector_frame_skip ≈ 30
MIT License 2021 GeekAlexis, 2022 RS Components Ltd