PictureInPicture Class |
Namespace: Flir.Atlas.Image.Fusion
public class PictureInPicture : FusionMode
The PictureInPicture type exposes the following members.
Name | Description | |
---|---|---|
PictureInPicture |
Default settings for FusionMode PictureInPicture
| |
PictureInPicture(Rectangle) |
FusionMode PictureInPicture settings
| |
PictureInPicture(Rectangle, VisualColorMode) |
FusionMode PictureInPicture settings
|
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 | |
---|---|---|
Area |
The rectanlge where the Thermal-image will be placed inside the photo.
| |
Blending |
Set and get the blending factor.
| |
Color |
Color to use in colorization.
| |
UseBlending |
Set blending on or off.
|
using Flir.Atlas.Image; using (ThermalImageFile image = new ThermalImageFile(_existingFile)) { Rectangle rec = new Rectangle(10,10,200,250); var fus = new PictureInPicture(rec); fus.UseBlending = true; fus.Blending = 50.0f; image.Fusion.Mode = fus; Bitmap bitmap = image.Image; }