#flir #thermal #image #extracting #temperature #data #python

flyr

Flyr is a library for extracting the thermal data from FLIR images

4 releases

0.5.0 Jul 8, 2022
0.4.2 Dec 29, 2020
0.4.1 Dec 24, 2020
0.4.0 Oct 12, 2020

#451 in Images

29 downloads per month
Used in libblackbody

EUPL-1.2

22KB
366 lines

Flyr

Flyr is a library for extracting thermal data from FLIR images written fully in Rust. Files can be read with a single function call returning a 2D array with the temperatures in Kelvin. This project has a sibling project in flyr-py, which is Flyr fully written in Python.

Installation

This library is available on crates.io. Install by adding flyr = "0.4.0" to your Cargo.toml.

Usage

Call try_parse_flir on a filepath to extract the thermal data:

use flyr::try_parse_flir;

fn main() {
    // Return value is of type Result<Array<f32, Ix2> std::io::Error>
    let file_path = Path::new("/home/user/FLIR0923.jpg");
    let r_kelvin = try_parse_flir(file_path);
}

The array structure is provided by https://crates.io/crates/ndarray.

Status

Currently this library has been tested to work with:

  • FLIR C2
  • FLIR E4
  • FLIR E5
  • FLIR E6
  • FLIR E8
  • FLIR E8XT
  • FLIR E53
  • FLIR E75
  • FLIR T630SC
  • FLIR T660

Camera's found not to work (yet):

  • FLIR E60BX
  • FLIR ThermoCAM B400
  • FLIR ThermaCAM SC640
  • FLIR ThermaCam SC660 WES
  • FLIR ThermaCAM T-400
  • FLIR S60 NTSC
  • FLIR SC620 Western
  • FLIR T400 (Western)
  • FLIR T640
  • FLIR P660

Issue tracking

Issue tracking happens in the Blackbody repository.

Dependencies

~14MB
~107K SLoC