Skip to main content
Version: 20 Mar 2024

MLEyeCameraFrameBuffer

Module: Pixel Sensors / Eye Camera

A structure to encapsulate per plane info for each camera frame. More...

#include <ml_eye_camera.h>

Public Attributes

TypeName
uint32_twidth
uint32_theight
uint32_tstride
uint32_tbytes_per_pixel
uint32_tpixel_stride
uint32_tsize
uint8_t *data

Detailed Description

struct MLEyeCameraFrameBuffer;

A structure to encapsulate per plane info for each camera frame.

API Level:

  • 26

Public Attributes Documentation

width

uint32_t width;

Width of the output image in pixels.


height

uint32_t height;

Height of the output image in pixels.


stride

uint32_t stride;

Stride of the output image in bytes.


bytes_per_pixel

uint32_t bytes_per_pixel;

Number of bytes used to represent a pixel.


pixel_stride

uint32_t pixel_stride;

Distance between 2 consecutive pixels in bytes.


size

uint32_t size;

Number of bytes in the image output data.


data

uint8_t * data;

Image data.