camera_has_feature()
Determine whether a feature is available on the camera
Synopsis:
#include <camera/camera_api.h>bool camera_has_feature(camera_handle_t handle,
camera_feature_t feature)Arguments:
- handle
- The handle returned by a call to the camera_open() function.
- feature
- The specific feature to query (see camera_feature_t).
Library:
libcamapiDescription:
The availability of a feature does not mean that the feature is usable. For example, this function may indicate that manual white balance is available, but the feature actually may not be used until the viewfinder is active. To determine if a feature can be used in the camera's current state, use the camera_can_feature() function.
Note:
The set of available features may vary based on the current viewfinder mode. For more information, see Viewfinder Mode
.
Returns:
true when the specified feature is available on the camera, otherwise false.
Page updated:
