Home
last modified time | relevance | path

Searched refs:captureOptions (Results 1 – 10 of 10) sorted by relevance

/expo/packages/expo-camera/build/
H A DuseWebQRScanner.d.ts3 …video: React.MutableRefObject<HTMLVideoElement | null>, { isEnabled, captureOptions, interval, onS…
5 captureOptions: Pick<CameraPictureOptions, 'scale' | 'isImageMirror'>;
H A DuseWebQRScanner.js60 export function useWebQRScanner(video, { isEnabled, captureOptions, interval, onScanned, onError, }…
70 const data = captureImageData(video.current, captureOptions);
H A DWebCameraUtils.js31 const captureOptions = { variable
37 if (key in config && config[key] !== undefined && key in captureOptions) {
38 captureOptions[key] = config[key];
41 return captureOptions;
H A DExponentCamera.web.js27 captureOptions: { scale: 1, isImageMirror: native.type === CameraType.front }, property
H A DuseWebQRScanner.js.map1captureOptions,\n interval,\n onScanned,\n onError,\n }: {\n isEnabled: boolean;\n …
H A DWebCameraUtils.js.map1captureOptions = {\n scale: 1,\n imageType: ImageType.png,\n isImageMirror: false,\n };\…
H A DExponentCamera.web.js.map1 …nnerSettings?.interval,\n isEnabled: isQRScannerEnabled,\n captureOptions: { scale: 1, i…
/expo/packages/expo-camera/src/
H A DuseWebQRScanner.ts79 captureOptions,
85 captureOptions: Pick<CameraPictureOptions, 'scale' | 'isImageMirror'>;
101 const data = captureImageData(video.current, captureOptions);
H A DWebCameraUtils.ts67 const captureOptions = { constant
74 if (key in config && config[key] !== undefined && key in captureOptions) {
75 captureOptions[key] = config[key];
78 return captureOptions;
H A DExponentCamera.web.tsx50 captureOptions: { scale: 1, isImageMirror: native.type === CameraType.front },