Go to file
2021-03-04 10:27:37 +01:00
.github Install node_modules in build-docs.yml 2021-03-04 10:27:37 +01:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android Bump CameraX versions to alpha2/alpha22 (#7) 2021-02-26 17:34:28 +01:00
docs Upgrade all packages to latest 2021-03-03 21:56:03 +01:00
example Update build.gradle (#16) 2021-03-04 09:47:39 +01:00
ios Fix wrong variable name for tag 2021-02-25 15:15:35 +01:00
scripts Bootstrap 2021-02-19 16:07:53 +01:00
src Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
.eslintrc.js Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
.gitignore Update .gitignore 2021-03-03 21:24:44 +01:00
.prettierrc.js Finish devDependencies setup 2021-02-19 16:20:19 +01:00
babel.config.js Fix include 2021-02-20 17:09:57 +01:00
CONTRIBUTING.md move md to docs 2021-02-19 21:26:49 +01:00
LICENSE Update LICENSE 2021-02-25 22:48:21 +01:00
package.json Upgrade all packages to latest 2021-03-03 21:56:03 +01:00
react-native-vision-camera.podspec update config 2021-02-19 21:18:31 +01:00
README.md Fix docusaurus setup 2021-03-03 21:20:20 +01:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.json Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
yarn.lock Upgrade all packages to latest 2021-03-03 21:56:03 +01:00

Vision Camera



📸 The Camera library that sees the vision.






Documentation

Install

npm i react-native-vision-camera
npx pod-install

Features

  • Photo and Video capture
  • Customizable device (ultra-wide-angle, wide-angle, telephoto and virtual multi-cameras)
  • Customizable FPS
  • JS worklet frame processors powered by JSI and Reanimated (WIP #2)
  • Reanimated zooming
  • HDR & Night modes

See the example app

Example

function App() {
  const devices = useCameraDevices('wide-angle-camera')
  const device = devices.back

  if (device == null) return <LoadingView />
  return (
    <Camera
      style={StyleSheet.absoluteFill}
      device={device}
      isActive={true}
    />
  )
}

🚀 Get started by setting up permissions!