Class CameraImageMessage
- Namespace
- NominalSystems.Messages
- Assembly
- NominalSystems.Messages.dll
Structure used to define the output definition for an image on-board a camera.
public sealed class CameraImageMessage : Message<CameraImagePayload>
- Inheritance
-
Message<CameraImagePayload>CameraImageMessage
- Inherited Members
-
Message<CameraImagePayload>.PayloadMessage<CameraImagePayload>.ToString()Message<CameraImagePayload>.PayloadTypeMessage<CameraImagePayload>.PayloadObject
Constructors
CameraImageMessage()
Default constructor
public CameraImageMessage()
Properties
Data
[-] The raw byte data from the image
[Units("-")]
public byte[] Data { get; set; }
Property Value
- byte[]
Height
[px] The number of pixels the image is in height
[Units("px")]
public int Height { get; set; }
Property Value
ImageName
[-] The name of the image to be saved
[Units("-")]
public string ImageName { get; set; }
Property Value
IsValid
A flag whether the camera image is valid
[Units("-")]
public bool IsValid { get; set; }
Property Value
Type
[-] The type of image that is being taken
[Units("-")]
public ImageType Type { get; set; }
Property Value
Width
[px] The number of pixels the image is in width
[Units("px")]
public int Width { get; set; }