ICameraV2ImageArray Property
Returns a safearray of int of size NumX * NumY containing the pixel values from the last exposure.

Namespace: ASCOM.DeviceInterface
Assembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntax
Object ImageArray { get; }

Property Value

Type: Object
The image array.
Exceptions
ExceptionCondition
NotConnectedExceptionMust 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 is the preferred method for programs (not scripts) to download iamges since it requires much less memory.

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