A simple parser for Infiray IRG radiometric thermal imaging files
Project description
Infiray IRG file format parser
This python module contains a simple parser for the "IRG" file format that the Infiray C200 series thermal cameras, P200 series and others use to dump their raw data. The files contain three things: A thermal image with 8 bit resolution with contrast scaled to fit the 0...255 range, a thermal image with 16 bit resolution containing absolute temperature values with 1/16 K resolution, and for some models a JPEG with the image from the low-res visual camera.
Requirements
pillow and numpy
API
Call infiray_irg.load(data) with a bytes object containing the IRG file's contents. It will return a tuple (coarse, fine, vis) of the coarse and fine images as numpy arrays, followed by the visual image as a pillow image. The coarse
image has dtype uint8 and contains values from 0 to 255, where 0 is the coldest pixel in the image, and 255 is the
hottest. The fine image has dtype float and contains absolute degree Celsius values.
Example
from matplotlib import pyplot as plt
from pathlib import Path
import infiray_irg
coarse, fine, vis = infiray_irg.load(Path('example.irg').read_bytes())
fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(15, 18))
ax1.imshow(coarse)
ax1.set_title('Coarse contrast-maximized')
fine_plt = ax2.imshow(fine)
ax2.set_title('Fine absolute temperatures')
fig.colorbar(fine_plt, ax=ax2, location='right', label='degrees Celsius')
ax3.imshow(vis)
ax3.set_title('Visual')
ax4.hist(fine.flatten(), bins=100)
ax4.set_title('Temperature histogram')
ax4.set_xlabel('degrees Celsius')
fig.tight_layout()
fig.savefig('plot.png')
print('Coldest pixel:', fine.min(), 'C', 'Hottest pixel:', fine.max(), 'C')
Bugs
If you find a bug, or find a file that this library can't load, please send me an email at code@jaseg.de. If your thermal camera isn't supported, please send me an email with one or more example pictures. Please make sure there's something of high contrast visible on these pictures, such as a hot cup of tea.
License
This module is licensed under the MIT license.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file infiray_irg-1.6.0.tar.gz.
File metadata
- Download URL: infiray_irg-1.6.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0b91c810344d4e55a41e60566f0c6aa53ebf73f547586ed7b109399b2c10129
|
|
| MD5 |
5cd08efaf2c81f212c7c251457919538
|
|
| BLAKE2b-256 |
6de32b2ec20db11321f1c78296e1095a6f7d89347e7d9ab3832a2bd8d0f2544b
|
File details
Details for the file infiray_irg-1.6.0-py3-none-any.whl.
File metadata
- Download URL: infiray_irg-1.6.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af2b7e490ee86fd131eed2717e0cd991fcebf18d6d6063f8211f49e6d2fe699f
|
|
| MD5 |
33944bb18dbcf76f9387ad5dad235fe5
|
|
| BLAKE2b-256 |
2d03ff4686a2e8e476cf3ea6b1383917ea8eed70f14de96ffcbc783ed328369a
|