camera_res_t

Updated: April 19, 2023

The resolution (height and width of an image) in pixels

Synopsis:

#include <camera/camera_api.h>
typedef struct {
    unsigned int width;
    unsigned int height;
} camera_res_t;

Data:

unsigned int width
The width of the image in pixels.
unsigned int height
The height of the image in pixels.

Library:

libcamapi

Description:

Use this structure when querying supported resolutions.