The L_CC_Frame structure contains input data for a frame.
struct L_CC_Frame{L_UINT StructSize;L_INT Width;L_INT Height;L_CC_FrameOrientation Orientation;L_CC_ImageFormat ImageFormat;const L_UCHAR* ImageData;}typedef struct L_CC_Frame L_CC_Frame;
Member |
Description |
| StructSize | Size of this structure in bytes, for versioning. Use the sizeof() macro to calculate this value. |
| Width | Width, in pixels. |
| Height | Height, in pixels. If negative, this image is flipped (BOTTOM_UP). Negative values are only valid for RGB/BGR formats. |
| Orientation | An L_CC_FrameOrientation value indicating the orientation of this frame. |
| ImageFormat | An L_CC_ImageFormat indicating the image format. |
| ImageData | A pointer to the image data (in ImageFormat). |
L_CC_Frame is used with the L_CC_ScanFrame function.