camera_get_supported_sharpness()
Retrieve the supported sharpness values
Synopsis:
#include <camera/camera_api.h>camera_error_t camera_get_supported_sharpness(camera_handle_t handle,
uint32_t numasked,
uint32_t *numsupported,
int32_t *values,
bool *maxmin)Arguments:
- handle
- The handle returned by a call to the camera_open() function.
- numasked
- The requested number of sharpness values to return in the values array.
- numsupported
- The returned number of sharpness values supported by the camera.
- values
- A pointer to an
int32_tarray that is updated with the sharpness values supported by the camera. If the maxmin flag returnstrue, the first value returned in the values array is the maximum supported sharpness value, and the second value is the minimum supported sharpness value. - maxmin
- A pointer to a
boolvalue that specifies how to interpret the values array. If the maxmin flag is set totrue, the array values represent a maximum and minimum value. If it's set tofalse, the array values describe the discrete sharpness values that are supported.
Library:
libcamapiDescription:
Use this function to retrieve the supported sharpness values. You can use the values returned by this function to configure the sharpness using camera_set_sharpness().
Ensure that the values argument points to an array that 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 values 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, store its address in values, and invoke the function again with numasked set to that previous numsupported value.
Returns:
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.
