gitextract_801zmmcq/ ├── .github/ │ └── workflows/ │ ├── publish_on_release_update.yml │ └── publish_to_testpypi_on_setup_change.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples/ │ ├── cam_test.py │ ├── live_video.py │ └── web_server.py ├── icons/ │ ├── MatPlotLib Thermal Camera │ ├── Run Flask Thermal Camera │ └── Run OpenCV Thermal Camera ├── pithermalcam/ │ ├── __init__.py │ ├── pi_therm_cam.py │ ├── templates/ │ │ └── index.html │ └── web_server.py ├── requirements.txt ├── requirements_without_opencv.txt ├── saved_snapshots/ │ └── note.txt ├── sequential_versions/ │ ├── Method Comparison.ipynb │ ├── matplotlib_therm_cam.py │ ├── opencv_therm_cam.py │ └── sequential_config.ini ├── setup.cfg └── setup.py