Msx Class |
Namespace: Flir.Atlas.Image.Fusion
public class Msx : FusionMode
The Msx type exposes the following members.
Name | Description | |
---|---|---|
Msx |
Creates an instance of MSXSettings with default settings
| |
Msx(Double) |
Creates an instance of MSXSettings with specified Alpha intensity
|
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 | |
---|---|---|
Alpha | Intensity of the MSX Default value is 2 0 means no MSX Typically 6 should be used as max value |
using Flir.Atlas.Image; using (ThermalImageFile image = new ThermalImageFile(_existingFile)) { //Default value for MSX is 2.0. //Good values are between 0.0 and 6.0 image.Fusion.Mode = image.Fusion.Msx; Bitmap bitmap = image.Image; }