Function mlx9064x::calculations::raw_pixels_to_temperatures[][src]

pub fn raw_pixels_to_temperatures<'a, Clb, Px>(
    calibration: &'a Clb,
    emissivity: f32,
    t_r: Option<f32>,
    resolution_correction: f32,
    pixel_data: &[u8],
    ram: RamData,
    subpage: Subpage,
    access_pattern: AccessPattern,
    valid_pixels: &mut Px,
    destination: &mut [f32]
) -> f32 where
    Clb: CalibrationData<'a>,
    Px: Iterator<Item = bool>, 
Expand description

Calculate the temperature from all pixels, starting with the raw data from the camera

This function combines raw_pixels_to_ir_data and raw_ir_to_temperatures, performing all per-pixel operations in a single pass.