Video coming soon!
Watch full video: https://www.youtube.com/watch?v=j9eo9Cs8J8I
Watch full video: https://www.youtube.com/watch?v=i2XMtshdjn8
Make sure you have the newest Nvidia JetPack to avoid issues.
- Update package manager
sudo apt update && sudo apt upgrade- You will need OpenCV 4.4+ for CUDA DNN support. Install it with this script:
wget https://raw.githubusercontent.com/mdegans/nano_build_opencv/master/build_opencv.sh
./build_opencv.sh- Install AI Thermometer
git clone https://github.com/tomek-l/ai-thermometer
pip3 install -r requirements.txt
export DISPLAY=:0.0 # (if accessing remotely)
python3 main.py- Make sure your user has r/w access to the camera device.
- the provided
libuvc.sois compiled for AArch64. It is a custom version of libuvc that supports Y16 video format. If you're using different architecture, you will need to build the library from source:
git clone https://github.com/groupgets/libuvc
cd libuvc
mkdir build
cd build
cmake ..
make
cp libuvc.so ~/ai-thermometer/ir/libuvc_wrapper
