Updated: October 28, 2024 |
Retrieve the supported manual aperture values (f-numbers)
#include <camera/camera_3a.h>
camera_error_t camera_get_supported_manual_aperture_values(camera_handle_t handle, unsigned numasked, unsigned *numsupported, double *aperturevalues, bool *maxmin)
Use this function to retrieve the set of supported manual aperture values (f-numbers) for the camera.
Ensure that the aperturevalues argument points to an array which has at least numasked elements allocated. To determine an appropriate size for this array, you can invoke this function in presizing mode by setting the numasked argument to 0 or the aperturevalues argument to NULL. The function then returns, in the numsupported argument, the maximum array size required. You can then allocate an array of this size and invoke the function again with numasked set to that previous numsupported value.
The values that you retrieve using this function can be set using the camera_set_manual_aperture() function.
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.