ThermalImageFile Class |
Namespace: Flir.Atlas.Image
public sealed class ThermalImageFile : ThermalImage, IDisposable
The ThermalImageFile type exposes the following members.
Name | Description | |
---|---|---|
ThermalImageFile |
Creates an instance of a ThermalImageFile.
| |
ThermalImageFile(String) |
Creates an instance of an IRImage from a file on the specified path.
|
Name | Description | |
---|---|---|
CalculateEmissivity |
Calculates the emissivity from reference temperature.
(Inherited from ThermalImage.) | |
Close |
Closes the file stream.
| |
ConvertToUltraMax |
Converts the image to an UltraMax image
| |
Count |
Gets the number of frames.
| |
Dispose | Releases all resources used by the ThermalImageFile | |
EnterLock |
Acquires an exclusive lock.
(Inherited from ImageBase.) | |
Equals | (Inherited from Object.) | |
ExitLock |
Releases an exclusive lock.
(Inherited from ImageBase.) | |
GetData |
Get embedded radiometric data blob.
(Inherited from ImageBase.) | |
GetEmissivityFromValue(Double, Double) |
Calculates emissivity from a known temperature.
(Inherited from ThermalImage.) | |
GetEmissivityFromValue(Int32, Int32, Double) |
Calculates emissivity from a known temperature.
(Inherited from ThermalImage.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetValueAt |
Gets an ThermalValue from a position in the Thermal Image.
(Inherited from ThermalImage.) | |
GetValueFromEmissivity |
Calculates temperature in current TemperatureUnit.
(Inherited from ThermalImage.) | |
GetValueFromSignal |
Gets a ThermalValue from a signal.
(Inherited from ThermalImage.) | |
GetValues(Point) |
Gets a ThermalValue from a signal.
(Inherited from ThermalImage.) | |
GetValues(Rectangle) |
Gets a ThermalValue from a signal.
(Inherited from ThermalImage.) | |
ImageArray |
Returns a double array representing the image.
(Inherited from ThermalImage.) | |
IsThermalImage |
Check if the file contains thermal data.
| |
Load |
Loads an Thermal FFF Image from a byte array.
(Inherited from ImageBase.) | |
Open |
Opens an Thermal Image from the specified file.
| |
RenderTo |
Render the new image to the input image buffer IPixels.
(Inherited from ThermalImage.) | |
Save |
Saves the Thermal Image to file.
| |
Save(Bitmap) |
Saves the Thermal Image to file.
| |
Save(String) |
Saves the Thermal Image to the specified file.
| |
Save(String, Bitmap) |
Saves the Thermal Image to the specified file.
| |
SaveSnapshot(String) |
Saves the current image to disk.
(Inherited from ThermalImage.) | |
SaveSnapshot(String, Bitmap) |
Saves the current image to disk.
(Inherited from ImageBase.) | |
SetRotate |
Rotate the image.
(Inherited from ThermalImage.) | |
Swap |
Manually swaps the image back buffer.
(Inherited from ImageBase.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
TryEnterLock |
Attempts to acquire an exclusive lock.
(Inherited from ImageBase.) |
Name | Description | |
---|---|---|
Alarms |
Gets the collection of isotherms.
(Inherited from ThermalImage.) | |
CameraInformation |
Gets information about the camera used to create this Thermal image.
(Inherited from ThermalImage.) | |
ColorDistribution |
Gets or sets the Thermal image color distribution.
(Inherited from ThermalImage.) | |
CompassInformation |
Gets the compassInformation of the image.
(Inherited from ImageBase.) | |
ContainsUltraMaxData |
Check if the image contains UltraMax data.
Images containing UltraMax data can be converted to UltraMax, see ConvertToUltraMax | |
DateTime |
Gets the image creation date and time.
(Inherited from ThermalImage.) | |
Description |
Gets or sets the image description.
| |
DistanceUnit |
Gets or sets the distance unit.
(Inherited from ThermalImage.) | |
FileName |
Gets the name of the current opened file.
| |
Fusion |
Gets the Fusion object.
(Inherited from ThermalImage.) | |
GpsInformation |
Gets the GPS information from the image.
(Inherited from ImageBase.) | |
Height |
Gets the height of the image in pixels.
(Inherited from ImageBase.) | |
Image |
Returns a Bitmap representing the image.
(Inherited from ThermalImage.) | |
ImageProcessing |
Advanced image processing.
(Inherited from ImageBase.) | |
Isotherms |
Gets the collection of isotherms.
(Inherited from ThermalImage.) | |
MaxSignalValue |
Gets the maximum signal value of the image.
(Inherited from ThermalImage.) | |
Measurements |
Gets the measurements collection.
(Inherited from ThermalImage.) | |
MinSignalValue |
Gets the minimum signal value of the image.
(Inherited from ThermalImage.) | |
OverflowSignalValue |
Gets the overflow signal value.
(Inherited from ThermalImage.) | |
Palette |
Handle palette selections
(Inherited from ThermalImage.) | |
PaletteManager |
Gets the palette object.
(Inherited from ThermalImage.) | |
Precision |
Presentation precision gets number of decimals.
(Inherited from ThermalImage.) | |
Scale |
Gets the scale object.
(Inherited from ThermalImage.) | |
SensorsCollection |
Gets a collection of sensor data objects.
| |
Size |
Gets the width and height of the image in pixels.
(Inherited from ImageBase.) | |
Statistics |
Gets the image results ImageStatistics (Inherited from ThermalImage.) | |
TemperatureUnit |
Gets or sets the temperature unit and will propagate a TemperatureUnitChanged event when changed.
(Inherited from ThermalImage.) | |
TextAnnotations |
Gets a collection of text annotation objects.
| |
ThermalParameters |
Gets the image statistics i.e. max, min etc.
(Inherited from ThermalImage.) | |
ThermalSequencePlayer |
Gets the ThermalSequencePlayer
Plays seq, csq and fcf files. If Count > 1 it is a sequence
| |
Title |
Gets the image title.
| |
Trigger |
Gets the trigger settings for this image.
(Inherited from ThermalImage.) | |
UnderflowSignalValue |
Gets the underflow signal value.
(Inherited from ThermalImage.) | |
VoiceAnnotation |
Gets the voice annotation object.
| |
Width |
Gets the width of the image in pixels.
(Inherited from ImageBase.) | |
Zoom |
Image zoom settings.
(Inherited from ThermalImage.) |
Name | Description | |
---|---|---|
Changed |
Occurs when an image has changed e.g. needs to be uppdated.
(Inherited from ImageBase.) | |
TemperatureUnitChanged |
Occurs when the temperature unit is changed.
(Inherited from ThermalImage.) |
private void button1_Click(object sender, EventArgs e) { var irImage = new ThermalImageFile(@"C:\Images\IR_2034.jpg"); pictureBox1.Image = irImage.Image; }