Skip to main content

A lightweight Python library for thermal sensing and analytics on Linux platforms

Project description

๐Ÿ”ฅ PyThermal

A lightweight Python library for thermal sensing and analytics on Linux platforms (x86_64 and ARM). It provides unified APIs for recording, visualization, and intelligent analysis of thermal data from Hikvision or compatible infrared sensors.


๐ŸŒก๏ธ Features

  • Raw Frame Recording Capture and store radiometric thermal frames (e.g., 96ร—96, 16-bit raw) with timestamps.

  • Colored Visualization Generate pseudo-color thermal images (e.g., 240ร—240 RGB) with adjustable color maps.

  • Live Stream Interface Stream frames in real time, perform temperature conversion and display dynamically.

  • Shared Memory Architecture Efficient zero-copy access to thermal data via shared memory interface.

  • Thermal Object Detection Detect objects based on temperature ranges with clustering support:

    • Temperature-based object detection (default: 31-39ยฐC for human body)
    • Object center detection and clustering
    • Temperature statistics per detected object (min / max / avg)
  • YOLO v11 Detection (Optional) Advanced object and pose detection using YOLO v11:

    • Object detection with YOLO v11 (supports default and custom thermal models)
    • Pose/keypoint detection with 17 COCO keypoints
    • Support for custom thermal-specific models
    • Real-time inference on thermal images
  • Offline Replay and Analysis (Future Development) Replay recorded sessions for algorithm benchmarking or dataset generation.


๐Ÿš€ Installation

Quick Install (Recommended)

Install from source with automatic USB setup:

git clone https://github.com/AIoT-Infrastructure/pythermal.git
cd pythermal
pip install -e .

โœจ Automatic USB Setup: When you install with pip install -e ., the package automatically:

  • Sets up USB device permissions (copies udev rules to /etc/udev/rules.d/)
  • Adds your user to the plugdev group
  • Reloads udev rules

You may be prompted for your password during installation to complete the USB setup. After installation:

  • Disconnect and reconnect your thermal camera
  • Log out and log back in (or restart) for group changes to take effect

Alternative: Manual USB Setup

If you prefer to set up USB permissions manually, or if automatic setup didn't work:

# After installing the package
pythermal-setup-usb

This command will prompt for your password and set up USB permissions manually.

Full Setup (Optional)

For a complete setup including system dependencies (FFmpeg libraries) and native compilation:

cd pythermal
./setup.sh

This script will:

  1. Detect your system architecture (x86_64 or ARM) and install required system dependencies (FFmpeg libraries)
  2. Set up USB device permissions for the thermal camera
  3. Compile the native thermal recorder (pythermal-recorder) for your architecture

Note: The native binaries are already included in the package, so compilation is only needed if you want to rebuild them.

Install from PyPI

Install directly on a Linux device (x86_64 or ARM, e.g., x86_64 desktop, Jetson, OrangePi, Raspberry Pi):

uv pip install pythermal

After installation, run pythermal-setup-usb to set up USB permissions.

Optional: YOLO Detection Support

To enable YOLO v11 object and pose detection, install with the yolo extra:

uv pip install pythermal[yolo]

Or install ultralytics separately:

pip install ultralytics>=8.0.0

โœ… Bundled Native Runtime The package ships with the native thermal recorder (pythermal-recorder) and required shared libraries (.so files) for both x86_64 (pythermal/_native/linux64/) and ARM (pythermal/_native/armLinux/). The library automatically detects your system architecture and uses the appropriate binaries.


๐Ÿง  Quick Start

1. Initialize Thermal Device

The ThermalDevice class manages the thermal camera initialization by starting pythermal-recorder in a separate process and providing access to thermal data via shared memory.

from pythermal import ThermalDevice

# Create and start thermal device
device = ThermalDevice()
device.start()  # Starts pythermal-recorder subprocess and initializes shared memory

# Access shared memory for reading thermal data
shm = device.get_shared_memory()

# When done, stop the device
device.stop()

Or use as a context manager:

with ThermalDevice() as device:
    shm = device.get_shared_memory()
    # Use shared memory...
    # Device automatically stops on exit

2. Live View

Display real-time thermal imaging feed:

from pythermal import ThermalLiveView

viewer = ThermalLiveView()
viewer.run()  # Opens OpenCV window with live thermal feed

Or with a shared device:

from pythermal import ThermalDevice, ThermalLiveView

device = ThermalDevice()
device.start()

viewer = ThermalLiveView(device=device)
viewer.run()  # Uses the shared device

device.stop()

Controls:

  • Press q to quit
  • Press t to toggle between YUYV view and temperature view
  • Move mouse over image to see temperature at cursor position

3. Record Thermal Frames

from pythermal import ThermalRecorder
import time

rec = ThermalRecorder(output_dir="recordings", color=True)
rec.start()              # Starts device and begins recording
rec.record_loop(duration=10)  # Record for 10 seconds
rec.stop()               # Stop recording

This records both:

  • Raw temperature frames (96ร—96, uint16)
  • YUYV visual frames (240ร—240)
  • Colored RGB frames (240ร—240, uint8 RGB) if color=True

4. Access Thermal Data Directly

from pythermal import ThermalDevice, ThermalSharedMemory

device = ThermalDevice()
device.start()

shm = device.get_shared_memory()

# Check for new frame
if shm.has_new_frame():
    # Get metadata
    metadata = shm.get_metadata()
    print(f"Frame {metadata.seq}: {metadata.min_temp:.1f}ยฐC - {metadata.max_temp:.1f}ยฐC")
    
    # Get YUYV frame
    yuyv_frame = shm.get_yuyv_frame()
    
    # Get temperature array (96x96, uint16)
    temp_array = shm.get_temperature_array()
    
    # Get temperature map in Celsius (96x96, float32)
    temp_celsius = shm.get_temperature_map_celsius()
    
    # Mark frame as read
    shm.mark_frame_read()

device.stop()

5. Detect Objects in Thermal Images

Detect objects based on temperature ranges and visualize them with clustering:

from pythermal import ThermalDevice, detect_object_centers, cluster_objects

device = ThermalDevice()
device.start()
shm = device.get_shared_memory()

if shm.has_new_frame():
    metadata = shm.get_metadata()
    temp_array = shm.get_temperature_array()
    
    # Detect objects in temperature range (default: 31-39ยฐC for human body)
    objects = detect_object_centers(
        temp_array=temp_array,
        min_temp=metadata.min_temp,
        max_temp=metadata.max_temp,
        temp_min=31.0,  # Minimum temperature threshold
        temp_max=39.0,  # Maximum temperature threshold
        min_area=50     # Minimum area in pixels
    )
    
    # Cluster nearby objects together
    clusters = cluster_objects(objects, max_distance=30.0)
    
    # Each object contains: center_x, center_y, width, height, area,
    # avg_temperature, max_temperature, min_temperature
    for obj in objects:
        print(f"Object at ({obj.center_x:.1f}, {obj.center_y:.1f}): "
              f"{obj.avg_temperature:.1f}ยฐC")

device.stop()

See examples/detect_objects.py for a complete visualization example.


6. YOLO v11 Object and Pose Detection

Detect objects and human poses using YOLO v11 models:

from pythermal import ThermalDevice
from pythermal.detections.yolo import YOLOObjectDetector, YOLOPoseDetector
import cv2

device = ThermalDevice()
device.start()
shm = device.get_shared_memory()

# Initialize YOLO detectors (default models auto-download on first use)
object_detector = YOLOObjectDetector(model_size="nano")  # Options: nano, small, medium, large, xlarge
pose_detector = YOLOPoseDetector(model_size="nano")

if shm.has_new_frame():
    yuyv_frame = shm.get_yuyv_frame()
    bgr_frame = cv2.cvtColor(yuyv_frame, cv2.COLOR_YUV2BGR_YUYV)
    
    # Object detection
    objects = object_detector.detect(bgr_frame)
    for obj in objects:
        print(f"Detected {obj['class_name']} with confidence {obj['confidence']:.2f}")
    
    # Pose detection
    poses = pose_detector.detect(bgr_frame)
    for pose in poses:
        print(f"Detected person with {len(pose['keypoints'])} keypoints")
    
    # Visualize
    vis_image = object_detector.visualize(bgr_frame, objects)
    # or
    vis_image = pose_detector.visualize(bgr_frame, poses)

device.stop()

Using Custom Thermal Models

Place your custom YOLO v11 models (.pt files) in:

pythermal/pythermal/detections/yolo/models/

Quick usage:

# Use custom model from models directory
detector = YOLOObjectDetector(model_path="custom_thermal_object.pt")

๐Ÿ“– For detailed instructions on finding the models directory, uploading custom models, training, and troubleshooting, see the YOLO Detection Guide.

See examples/yolo_object_detection.py and examples/yolo_pose_detection.py for complete examples.


๐Ÿงฉ Command Line Interface

Command Description
pythermal-preview Live preview with temperature overlay
pythermal-setup-usb Set up USB device permissions for thermal camera

Examples:

# Live preview
pythermal-preview

# Set up USB permissions (if not done during install)
pythermal-setup-usb

The pythermal-setup-usb command will:

  • Copy udev rules to /etc/udev/rules.d/
  • Add your user to the plugdev group
  • Reload udev rules

After running, disconnect and reconnect your thermal camera, and log out/in for changes to take effect.


๐Ÿงฐ API Overview

Core Classes

Class Purpose
ThermalDevice Manages thermal camera initialization via subprocess and shared memory access
ThermalSharedMemory Reads thermal data from shared memory (YUYV frames, temperature arrays, metadata)
ThermalRecorder Records raw and colored frames to files
ThermalLiveView Displays live thermal imaging feed with OpenCV
FrameMetadata Named tuple containing frame metadata (seq, flag, dimensions, temperatures)

Detection Classes

Class Purpose
DetectedObject Dataclass representing a detected object with center, size, and temperature stats
BackgroundSubtractor Background subtraction for motion detection using running average
ROI Region of Interest definition with optional temperature thresholds
ROIManager Manages multiple ROIs for zone monitoring and filtering
YOLOObjectDetector YOLO v11 object detector (requires ultralytics package)
YOLOPoseDetector YOLO v11 pose/keypoint detector (requires ultralytics package)

Detection Functions

Function Purpose
detect_object_centers Detect object centers from temperature map based on temperature range
detect_moving_objects Detect moving objects using background subtraction
cluster_objects Cluster detected objects that are close to each other

Shape Analysis Functions

Function Purpose
calculate_aspect_ratio Calculate aspect ratio (width/height) of detected object
calculate_compactness Calculate compactness (circularity approximation)
calculate_circularity Calculate true circularity from contour
calculate_convexity_ratio Calculate convexity ratio from contour
filter_by_aspect_ratio Filter objects by aspect ratio
filter_by_compactness Filter objects by compactness
filter_by_area Filter objects by area (min/max)
filter_by_shape Filter objects by multiple shape criteria

YOLO Detection Methods

Method Purpose
YOLOObjectDetector.detect() Detect objects in image, returns list of detections with bbox, class, confidence
YOLOObjectDetector.visualize() Draw bounding boxes and labels on image
YOLOPoseDetector.detect() Detect poses/keypoints in image, returns list of poses with 17 keypoints
YOLOPoseDetector.visualize() Draw skeleton, keypoints, and bounding boxes on image

๐Ÿงช Requirements

  • Python โ‰ฅ 3.9
  • Linux environment (x86_64 or ARM, e.g., x86_64 desktop, Jetson, OrangePi, Raspberry Pi)
  • NumPy, OpenCV (auto-installed via pip)
  • Thermal camera connected via USB
  • Proper USB permissions (automatically set up during pip install -e ., or manually via pythermal-setup-usb)

Optional Dependencies

  • ultralytics โ‰ฅ 8.0.0: Required for YOLO v11 detection features
    pip install ultralytics
    # or
    pip install pythermal[yolo]
    

โš™๏ธ Architecture

Native Runtime

The library uses a native binary (pythermal-recorder) that runs as a separate process and writes thermal data to shared memory (/dev/shm/yuyv240_shm). The Python library communicates with this process via shared memory for efficient zero-copy data access.

Bundled Files

The package includes native files for both x86_64 and ARM architectures:

x86_64 (pythermal/_native/linux64/):

pythermal/_native/linux64/
โ”œโ”€โ”€ pythermal-recorder      # Main thermal recorder executable
โ”œโ”€โ”€ libHCUSBSDK.so            # Hikvision USB SDK library
โ”œโ”€โ”€ libhpr.so                 # Hikvision processing library
โ”œโ”€โ”€ libusb-1.0.so*            # USB library dependencies
โ””โ”€โ”€ libuvc.so                  # UVC library

ARM (pythermal/_native/armLinux/):

pythermal/_native/armLinux/
โ”œโ”€โ”€ pythermal-recorder      # Main thermal recorder executable
โ”œโ”€โ”€ libHCUSBSDK.so            # Hikvision USB SDK library
โ”œโ”€โ”€ libhpr.so                 # Hikvision processing library
โ”œโ”€โ”€ libusb-1.0.so*            # USB library dependencies
โ””โ”€โ”€ libuvc.so                  # UVC library

The library automatically detects your system architecture and loads the appropriate binaries.

Shared Memory Layout

The shared memory (/dev/shm/yuyv240_shm) contains:

Offset          Size            Content
0               FRAME_SZ        YUYV frame data (240ร—240ร—2 bytes)
FRAME_SZ        TEMP_DATA_SIZE  Temperature array (96ร—96ร—2 bytes, uint16)
FRAME_SZ+TEMP   ...             Metadata:
                                - seq (4 bytes, uint32)
                                - flag (4 bytes, uint32, 1=new, 0=consumed)
                                - width (4 bytes, uint32)
                                - height (4 bytes, uint32)
                                - min_temp (4 bytes, float)
                                - max_temp (4 bytes, float)
                                - avg_temp (4 bytes, float)
                                - reserved (4 bytes)

Process Management

The ThermalDevice class:

  1. Starts pythermal-recorder as a subprocess
  2. Waits for shared memory to become available
  3. Provides access to thermal data via ThermalSharedMemory
  4. Automatically cleans up the process on exit

Troubleshooting

  • FileNotFoundError: pythermal-recorder not found Make sure you've run setup.sh to compile the native binaries, and that the package was installed correctly.

  • PermissionError: pythermal-recorder is not executable Run chmod +x on the executable, or reinstall the package.

  • TimeoutError: Shared memory did not become available

    • Check that the thermal camera is connected via USB
    • Verify USB permissions are set up correctly (run pythermal-setup-usb or setup.sh)
    • Try disconnecting and reconnecting the camera
    • Log out and log back in (or restart) after setting up USB permissions
    • Check that no other process is using the thermal camera
  • RuntimeError: Thermal recorder process exited unexpectedly Check the process output for error messages. Common issues:

    • Camera not detected
    • Missing USB permissions (run pythermal-setup-usb to fix)
    • Missing shared libraries (check LD_LIBRARY_PATH)
  • USB Permission Issues

    • If you get permission errors accessing the thermal camera:
      1. Run pythermal-setup-usb (or sudo pythermal-setup-usb)
      2. Disconnect and reconnect your thermal camera
      3. Log out and log back in (or restart your system)
      4. Verify with lsusb that your camera is detected
  • ImportError: ultralytics package is required for YOLO detection Install the ultralytics package:

    pip install ultralytics
    # or
    pip install pythermal[yolo]
    
  • FileNotFoundError: Model file not found

    • For custom models, ensure the .pt file is in pythermal/pythermal/detections/yolo/models/
    • Or provide the absolute path to the model file
    • Default models are automatically downloaded on first use (check internet connection)
    • See YOLO Detection Guide for detailed troubleshooting

๐Ÿ“ฆ Directory Structure

pythermal/
โ”œโ”€โ”€ pythermal/
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ device.py              # ThermalDevice class (manages subprocess)
โ”‚   โ”œโ”€โ”€ thermal_shared_memory.py  # Shared memory reader
โ”‚   โ”œโ”€โ”€ record.py              # ThermalRecorder class
โ”‚   โ”œโ”€โ”€ live_view.py           # ThermalLiveView class
โ”‚   โ”œโ”€โ”€ detections/            # Object detection module
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ utils.py           # Shared utilities and shape analysis
โ”‚   โ”‚   โ”œโ”€โ”€ temperature_detection.py  # Temperature-based detection
โ”‚   โ”‚   โ”œโ”€โ”€ motion_detection.py       # Background subtraction and motion detection
โ”‚   โ”‚   โ””โ”€โ”€ roi.py             # ROI management and zone monitoring
โ”‚   โ”œโ”€โ”€ usb_setup/             # USB setup scripts (included in package)
โ”‚   โ”‚   โ”œโ”€โ”€ setup.sh           # USB permissions setup script
โ”‚   โ”‚   โ”œโ”€โ”€ setup-thermal-permissions.sh
โ”‚   โ”‚   โ””โ”€โ”€ 99-thermal-camera.rules  # udev rules file
โ”‚   โ”‚   โ”œโ”€โ”€ roi.py             # ROI management and zone monitoring
โ”‚   โ”‚   โ””โ”€โ”€ yolo/              # YOLO v11 detection module
โ”‚   โ”‚       โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚       โ”œโ”€โ”€ object_detection.py   # YOLO object detection
โ”‚   โ”‚       โ”œโ”€โ”€ pose_detection.py    # YOLO pose detection
โ”‚   โ”‚       โ””โ”€โ”€ models/              # Custom thermal models directory
โ”‚   โ”‚           โ””โ”€โ”€ README.md         # Instructions for custom models
โ”‚   โ””โ”€โ”€ _native/
โ”‚       โ”œโ”€โ”€ linux64/           # x86_64 binaries
โ”‚       โ”‚   โ”œโ”€โ”€ pythermal-recorder
โ”‚       โ”‚   โ””โ”€โ”€ *.so            # Native libraries
โ”‚       โ””โ”€โ”€ armLinux/          # ARM binaries
โ”‚           โ”œโ”€โ”€ pythermal-recorder
โ”‚           โ””โ”€โ”€ *.so            # Native libraries
โ”œโ”€โ”€ examples/                  # Example scripts
โ”‚   โ”œโ”€โ”€ live_view.py
โ”‚   โ”œโ”€โ”€ record_thermal.py
โ”‚   โ”œโ”€โ”€ detect_objects.py      # Object detection visualization example
โ”‚   โ”œโ”€โ”€ detect_motion.py       # Motion detection example
โ”‚   โ””โ”€โ”€ detect_roi.py          # ROI zone monitoring example
โ”œโ”€โ”€ setup.sh                   # Full setup script (permissions, dependencies, compilation)
โ”œโ”€โ”€ setup.py                   # Python package setup (includes automatic USB setup)
โ”‚   โ”œโ”€โ”€ detect_roi.py          # ROI zone monitoring example
โ”‚   โ”œโ”€โ”€ yolo_object_detection.py  # YOLO object detection example
โ”‚   โ””โ”€โ”€ yolo_pose_detection.py   # YOLO pose detection example
โ”œโ”€โ”€ setup.sh                   # Setup script for permissions and compilation
โ”œโ”€โ”€ setup.py                   # Python package setup
โ””โ”€โ”€ README.md

๐Ÿ“š References

@inproceedings{zeng2025thermikit,
  title={ThermiKit: Edge-Optimized LWIR Analytics with Agent-Driven Interactions},
  author={Zeng, Lan and Huang, Chunhao and Xie, Ruihan and Huang, Zhuohan and Guo, Yunqi and He, Lixing and Xie, Zhiyuan and Xing, Guoliang},
  booktitle={Proceedings of the 2025 ACM International Workshop on Thermal Sensing and Computing},
  pages={40--46},
  year={2025}
}

๐Ÿ“„ License

This library is released under the Apache 2.0 License for research and non-commercial use. Only the compiled native library (.so) is shipped; no vendor source or headers are distributed.


๐Ÿ’ก Acknowledgements

๐Ÿซ Developed by AIoT Lab, CUHK
๐Ÿ“ง Device Access: thermal@thingx-tech.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pythermal-0.2.1.tar.gz (3.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pythermal-0.2.1-py3-none-any.whl (3.3 MB view details)

Uploaded Python 3

File details

Details for the file pythermal-0.2.1.tar.gz.

File metadata

  • Download URL: pythermal-0.2.1.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pythermal-0.2.1.tar.gz
Algorithm Hash digest
SHA256 d920392c6590e0e9dc924cb73664bbea2f14cbe181d277b489fa9dd6eae2b40e
MD5 7c0bd9f2cf41689c6cd5e8457424962a
BLAKE2b-256 0948d80a4c441e76347938f2da68903cd30b1134f6bd954d12bb4b55f82e2edd

See more details on using hashes here.

File details

Details for the file pythermal-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: pythermal-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pythermal-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 831b8a48e50d847095b4eeb22d7a9a4346849868fe8077efbfb454c68fa1f399
MD5 df74718246cf279795fc77b2540b9fa9
BLAKE2b-256 0228f10bb39499a8b606509bcf48d249cdec19d117ec1443c3a3c47b339d1023

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page