Click or drag to resize
ImageProcessingGetPixels Method
This method BitmapSourceWrapper. .

Namespace: Flir.Atlas.Image.ImageProcessing
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public IPixels GetPixels()

Return Value

Type: IPixels
Returns image as Flir.Atlas.Image.Interfaces.IPixels
Examples
C#
using Flir.Atlas.Image;
using (ThermalImageFile image = new ThermalImageFile(_existingFile))
{
         if (image != null)
         {
             // get signal values from image
             IPixels pix = image.ImageProcessing.GetPixels();
             int m = image.MaxSignalValue;
             // calculate the temperature for the maximum signal value
             double temp = image.GetValueFromSignal(m);
         }
}
See Also