mcOrganization Enumeration
|
|
An aspect of an Image's McImageType.
This type definition specifies how an image is organized in memory. For
example, the classic model of an image within system memory is that of a
simple two dimensional array, while Windows has always relied on the DIB
format -- the image is flipped last row first and each row must begin on
a DWORD boundary.
In many cases, the client doesn't really care how the image is organized as the
client can access the image a row at a time. In this case, the client can specify
AnyArray as a "don't care" condition.
Namespace:
MediaCy.IQL.Engine
Assembly:
MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcOrganization
Members
| Member name | Value | Description |
---|
| mcoAnyArray | 0 | to retrieve current array type |
| mcoFlatArray | 1 | simple block of bytes (i.e. legacy Frame Grabbers) |
| mcoInverted | 2 | Flat Array reads bottom to top |
| mcoDIBArray | 3 | DWORD aligned, and inverted |
| mcoBMPArray | 4 | rows are INT aligned (as in Bit Map) |
| mcoNewDIBArray | 5 | new format DIB - DWORD aligned, not inverted |
See Also