react-native-vision-camera
Version:
VisionCamera is the fastest and most powerful Camera for react-native.
22 lines (21 loc) • 528 B
TypeScript
/**
* Common Dynamic Ranges for the Camera.
*/
export declare const CommonDynamicRanges: {
/**
* Any SDR profile, preferrably 8-bit sRGB.
*/
readonly ANY_SDR: {
readonly bitDepth: "sdr-8-bit";
readonly colorSpace: "srgb";
readonly colorRange: "full";
};
/**
* Any HDR profile, preferrably 10-bit HLG_BT2020.
*/
readonly ANY_HDR: {
readonly bitDepth: "hdr-10-bit";
readonly colorSpace: "hlg-bt2020";
readonly colorRange: "full";
};
};