A package to get thermal information out of FLIR radiometric JPGs
Project description
Flir Image Extractor
FLIR® thermal cameras like the FLIR ONE® include both a thermal and a visual light camera. The latter is used to enhance the thermal image using an edge detector.
The resulting image is saved as a jpg image but both the original visual image and the raw thermal sensor data are embedded in the jpg metadata.
This small Python tool/library allows to extract the original photo and thermal sensor values converted to temperatures.
Requirements and Install
This tool relies on exiftool
. It should be available in most Linux distributions (e.g. as perl-image-exiftool
in Arch Linux or libimage-exiftool-perl
in Debian and Ubuntu). Links for downloading the Mac version and more information is available on the ExifTool site.
It also requires other python packages, matplotlib, numpy and pillow, which are installed when installed through pip.
sudo apt update
sudo apt install exiftool
pip install flirimageextractor
Usage
Example
import flirimageextractor
from matplotlib import cm
flir = flirimageextractor.FlirImageExtractor(palettes=[cm.jet, cm.bwr, cm.gist_ncar])
flir.process_image('examples/ax8.jpg')
flir.save_images()
flir.plot()
This script will show an interactive plot of the thermal image using matplotlib and save three image files ax8_thermal_jet.jpg, ax8_thermal_bwr.jpg, and ax8_thermal_gist_ncar.jpg.
Resulting Plot and Saved Images
Plot
Saved Images
The original temperature array is available using either the get_thermal_np
or export_thermal_to_csv
functions.
The functions get_rgb_np
and get_thermal_np
yield numpy arrays and can be called from your own script after importing this library.
The function save_image
saves the thermal image(s) in the same folder as the original image. By default it will output three images using the bwr
, gnuplot
, and gist_ncar
colormaps from matplotlib. You can define the pallete(s) that you would rather use when creating the class (see example). For a list of available matplotlib colormaps click here
Credits
Raw value to temperature conversion is ported from this R package: https://github.com/gtatters/Thermimage/blob/master/R/raw2temp.R Original Python code from: https://github.com/Nervengift/read_thermal.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flirimageextractor-1.0.0.tar.gz
.
File metadata
- Download URL: flirimageextractor-1.0.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5dc36d0eb56ce44f5911c0d2ef5c4328f80d9301bee698e828199ce8e46d4288 |
|
MD5 | 8daa5b3ab059c5582038d0c27e13f046 |
|
BLAKE2b-256 | 21179df45ff9ea03b635da456cb4c2c6bb3d4d74b822fd45bd819a4e70112439 |