ICameraV2ImageArrayVariant Property |
Returns a safearray of Variant of size
NumX *
NumY containing the pixel values from the last exposure.
Namespace: ASCOM.DeviceInterfaceAssembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntax Object ImageArrayVariant { get; }
ReadOnly Property ImageArrayVariant As Object
Get
property Object^ ImageArrayVariant {
Object^ get ();
}
Property Value
Type:
ObjectThe image array variant.
Exceptions Exception | Condition |
---|
NotConnectedException | Must throw exception if data unavailable. |
Remarks
The application must inspect the Safearray parameters to
determine the dimensions. Note: if
NumX or
NumY is changed after a call to
StartExposure it will have no effect on the size of this array. This property
should only be used from scripts due to the extremely high memory utilization on
large image arrays (26 bytes per pixel). Pixels values should be in Short, int,
or Double format.
For color or multispectral cameras, will produce an array of NumX * NumY *
NumPlanes. If the application cannot handle multispectral images, it should use
just the first plane.
See Also