Skip to main content

A Python package for manipulating thermographic data in Non-Destructive Testing (NDT) applications.

Project description

PyThermoNDT

PyThermoNDT is a Python package for manipulating thermographic data in Non-Destructive Testing (NDT) applications. It provides various methods to load, transform, visualize, and write thermographic data, making it easier and more efficient to work with thermal imaging in NDT contexts.

Features

  • Multi-source Data Loading: Read thermographic data seamlessly from local files and S3 storage
  • Hierarchical Data Structure: Store and access thermographic data, metadata, and ground truth in a common format
  • Remote Data Caching: Optionally cache data from remote sources for improved performance
  • Composable Transforms: Build custom processing pipelines with reusable transform components
  • PyTorch Integration: Datasets compatible with PyTorch DataLoader for training deep learning models

Quick Example

from torch.utils.data import DataLoader

from pythermondt import LocalReader, S3Reader
from pythermondt import transforms as T
from pythermondt.dataset import ThermoDataset, container_collate

# Load data from different sources
local_reader = LocalReader("./examples/example_data/**/*.hdf5", recursive=True)
s3_reader = S3Reader("ffg-bp", "example2_writing_data", download_files=True)

# Create optimized transform pipeline (deterministic transforms first for better caching)
transform = T.Compose([
    T.ApplyLUT(),                  # Convert raw data to temperatures
    T.RemoveFlash(),               # Remove flash frames
    T.NonUniformSampling(64),      # Resample data to 64 frames
    T.CropFrames(96, 96),          # Center crop the frames to 96x96
    T.MinMaxNormalize()            # Normalize data
])

# 1.) Access individual files using readers
container = local_reader[0]
processed = transform(container)

# 2.) Analyse processed data
processed.show_frame(frame_number=10)
processed.analyse_interactive()

# 3.) Combine sources in a dataset for training workflows
dataset = ThermoDataset([local_reader, s3_reader], transform=transform)

# 4.) Build cache for faster training (splits pipeline at first random transform)
dataset.build_cache("immediate")

# 5.) Use with PyTorch DataLoader for model training to be used in your training loop
collate_fn = container_collate('/Data/Tdata', '/GroundTruth/DefectMask')
dataloader = DataLoader(dataset, batch_size=4, shuffle=True, collate_fn=collate_fn)

for epoch in range(50):
    print(f"Epoch {epoch + 1}")
    for thermal_data, ground_truth in dataloader:
        print(f"Thermal data shape: {thermal_data.shape}")    # [4, 96, 96, 64]
        print(f"Ground truth shape: {ground_truth.shape}")    # [4, 96, 96]

From here?

PyThermoNDT is yours to use! You can start by exploring the examples directory for more detailed usage scenarios. The package is designed to be flexible and extensible, so feel free to modify and adapt it to your specific needs.

Installation

From PyPI (Recommended)

Install the latest stable release from PyPI:

pip install pythermondt

From GitHub

Install the latest development version from the main branch:

pip install git+https://github.com/voidsy-gmbh/pyThermoNDT.git

From Source

Clone the repository and install locally:

git clone https://github.com/voidsy-gmbh/pyThermoNDT.git
cd pyThermoNDT
pip install .

Documentation

For detailed usage examples, check out the Jupyter Notebooks in the examples directory.

Contributing

Contributions are welcome! Please see the Contributing Guidelines for details on setting up a development environment, coding standards, and the pull request process.

Funding

This project was partially funded by the Austrian Research Promotion Agency (FFG)

  • under grant numbers 920062 and 901177 as part of the project 'Thermal tomography'

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

pythermondt-0.3.2.tar.gz (69.2 kB view details)

Uploaded Source

Built Distribution

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

pythermondt-0.3.2-py3-none-any.whl (87.7 kB view details)

Uploaded Python 3

File details

Details for the file pythermondt-0.3.2.tar.gz.

File metadata

  • Download URL: pythermondt-0.3.2.tar.gz
  • Upload date:
  • Size: 69.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pythermondt-0.3.2.tar.gz
Algorithm Hash digest
SHA256 e069c00d5ea95794151edfda1bfab7de806d12be481411be8dc0f7c9f748dfb6
MD5 f8baa94cdd754cf5900cce526f012467
BLAKE2b-256 aea5a00bfe1c26b3f5aeface18cc1afc585282d901f79faa24da034e7cdd5a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pythermondt-0.3.2.tar.gz:

Publisher: post_release.yml on voidsy-gmbh/pyThermoNDT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pythermondt-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: pythermondt-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 87.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pythermondt-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c3c3ec09615fc52de92c1e441f9d702be2c4c05b0a432029f8e2e92805565ae2
MD5 b083081a8e847dd83c065e856efe631f
BLAKE2b-256 be74dfd0ccf6a8142fceca7915ff1ffa7fe3819ae7eb3b9951cfa64889248d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pythermondt-0.3.2-py3-none-any.whl:

Publisher: post_release.yml on voidsy-gmbh/pyThermoNDT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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