camera_meta_get_face_pitch()

Extract the detected face pitch angle from the provided face metadata.

Synopsis:

#include <camera/camera_meta.h>
 
int camera_meta_get_face_pitch(const camera_metadata_t metadata, float *pitch)

Arguments:

metadata

The metadata supplied to the user-defined consumer function by camera_meta_iterate_metadata().

pitch

The angle of rotation of the face around the x-axis.

Library:

libcamapi

Description:

The pitch value ranges from -180 degrees to +180 degrees relative to the preview buffer coordinate space. A negative pitch angle indicates that the face is tilted downward. A positive pitch angle indicates that the face is tilted upward.

Returns:

CAMERA_EOK when the function successfully completes, CAMERA_ENODATA if the camera did not provide a pitch value otherwise another camera_error_t value that provides the reason that the call failed.