camera_frame_rgb8888_t
A frame descriptor used for RGB8888 frame types.
Synopsis:
#include <camera/camera_api.h>
typedef struct {
uint32_t height ;
uint32_t width ;
uint32_t stride ;
}camera_frame_rgb8888_t;
Data:
- uint32_t height
- The height of the frame in pixels.
- uint32_t width
- The width of the frame in pixels.
- uint32_t stride
- The number of bytes from one row of pixels in memory to the next row of pixels in memory.
-
Stride is often referred to as pitch.
Library:
libcamapiDescription:
Use this file descriptor when CAMERA_FRAMETYPE_RGB8888 is used for the camera_frametype_t .