camera_physprop_t
Camera physical properties
Synopsis:
#include <camera/camera_api.h>typedef enum {
CAMERA_PHYSPROP_END = -1,
CAMERA_PHYSPROP_FOCALLENGTH = 0,
CAMERA_PHYSPROP_HORIZONTALFOV,
CAMERA_PHYSPROP_VERTICALFOV,
CAMERA_PHYSPROP_SENSORWIDTH,
CAMERA_PHYSPROP_SENSORHEIGHT,
CAMERA_PHYSPROP_MAXZOOMRATIO,
CAMERA_PHYSPROP_SENSORWIDTHPIXELS,
CAMERA_PHYSPROP_SENSORHEIGHTPIXELS,
CAMERA_PHYSPROP_FOCALLENGTH35MM,
CAMERA_PHYSPROP_APERTURE,
CAMERA_PHYSPROP_SENSORISO
} camera_physprop_t;Data:
- CAMERA_PHYSPROP_END
- The end-of-list identifier.
- CAMERA_PHYSPROP_FOCALLENGTH
- The focal length of the lens in millimeters, as a
doublevalue. - CAMERA_PHYSPROP_HORIZONTALFOV
- The horizontal field of view of the camera when set to its minimum zoom factor and its full-frame resolution.
- CAMERA_PHYSPROP_VERTICALFOV
- The vertical field of view of the camera when set to its minimum zoom factor and its full-frame resolution.
- CAMERA_PHYSPROP_SENSORWIDTH
- The full-frame width of the imaging sensor in millimeters, as a
doublevalue. - CAMERA_PHYSPROP_SENSORHEIGHT
- The full-frame height of the imaging sensor in millimeters, as a
doublevalue. - CAMERA_PHYSPROP_MAXZOOMRATIO
- The magnification ratio between the maximum zoom factor and the minimum zoom factor, as a
doublevalue. - CAMERA_PHYSPROP_SENSORWIDTHPIXELS
- The full-frame width of the imaging sensor in pixels, as a
uint32_tvalue. - CAMERA_PHYSPROP_SENSORHEIGHTPIXELS
- The full-frame height of the imaging sensor in pixels, as a
uint32_tvalue. - CAMERA_PHYSPROP_FOCALLENGTH35MM
- The 35mm-equivalent focal length of the lens in millimeters, as a
doublevalue. - CAMERA_PHYSPROP_APERTURE
- The aperture (or F-number) is expressed as the ratio of the focal length to the diameter of the entrance pupil of the lens, as a
doublevalue. - CAMERA_PHYSPROP_SENSORISO
- The native sensitivity of the camera sensor, as a
uint32_tISO value.
Library:
libcamapiDescription:
These properties are used as keys for the camera_get_physical_property() function. Each key is associated with a value of the indicated type.
Page updated:
