Fusion Class |
Namespace: Flir.Atlas.Image.Fusion
public class Fusion
The Fusion type exposes the following members.
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
Blending |
Thermal image shown as Blending.
| |
Mode |
Get current Fusion mode used when rendering the fusion image.
| |
Msx |
Thermal image shown as Msx (Multi Spectral Dynamic Imaging).
| |
PictureInPicture |
Thermal image shown as a photo with the Thermal image inside it.
| |
ThermalFusionAbove |
Thermal fusion above settings.
| |
ThermalFusionBelow |
Thermal fusion below settings.
| |
ThermalFusionInterval |
Thermal fusion below settings.
| |
ThermalOnly |
Thermal image shown as Thermal.
| |
VisualImage |
Gets the photo inside the Thermal-image file.
| |
VisualOnly |
Thermal image shown as Visual image
|
private void button1_Click(object sender, EventArgs e) { var image = new ThermalImageFile(@"C:\Images\IR_2034.jpg") image.Fusion.Mode = image.Fusion.Msx; pictureBox1.Image = image.Image; }