LightlyEdge C++ SDK
|
Frame data for LightlyEdge. More...
#include <lightly_edge_sdk.h>
Public Member Functions | |
Frame (size_t width, size_t height, void *rgbImageData) | |
Construct a new Frame object. | |
Public Attributes | |
size_t | width_ |
Width of the image. | |
size_t | height_ |
Height of the image. | |
void * | rgbImageData_ |
Pointer to the RGB image data. | |
Frame data for LightlyEdge.
|
inline |
Construct a new Frame object.
width | Width of the image. |
height | Height of the image. |
rgbImageData | Pointer to the RGB image data. |
void* lightly_edge_sdk::Frame::rgbImageData_ |
Pointer to the RGB image data.
The RGB image data is expected to be in row-major order with 3 channels (red, green, blue) and 8 bits per channel: [R, G, B, R, G, B, ...].