Go to file
Marc Rousavy 66b93181e1
Remove code scanning (#112)
* Remove Audio Device if it failed to configure

* Add `audio-in-use-by-other-app` error

* Try removing on interruption

* Format code

* Remove code scanning

* Fix export
2021-03-29 11:34:35 +02:00
.github Disable dependabot for package.json 2021-03-26 17:34:50 +01:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android Bump CameraX version (alpha03) 2021-03-25 10:19:56 +01:00
docs Don't localize error messages 2021-03-26 15:54:27 +01:00
example Rename pod to VisionCamera 2021-03-26 16:22:24 +01:00
ios Remove code scanning (#112) 2021-03-29 11:34:35 +02:00
scripts Add "check-all" script 2021-03-09 12:19:18 +01:00
src Remove code scanning (#112) 2021-03-29 11:34:35 +02:00
.eslintrc.js Remove prettier/@typescript-eslint 2021-03-04 10:43:53 +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
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2021-03-04 14:18:37 +01:00
CONTRIBUTING.md Add "check-all" script 2021-03-09 12:19:18 +01:00
LICENSE Update LICENSE 2021-02-25 22:48:21 +01:00
package.json Rename pod to VisionCamera 2021-03-26 16:22:24 +01:00
README.md Update README.md 2021-03-23 17:10:17 +01:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.docs.json Ignore example/ for building docs 2021-03-04 10:38:42 +01:00
tsconfig.json Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
VisionCamera.podspec Rename pod to VisionCamera 2021-03-26 16:22:24 +01:00
yarn.lock Upgrade Example to RN 0.64 (#83) 2021-03-19 15:53:19 +01:00

Vision Camera



📸 The Camera library that sees the vision.






Documentation

Install

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

Features

  • Photo, Video and Snapshot capture
  • Customizable devices and multi-cameras (smoothly zoom out to "fish-eye" camera)
  • Customizable FPS
  • Frame Processors (JS worklets to run QR-Code scanning, facial recognition, AI object detection, realtime video chats and more) (Work in progress: #2)
  • Smooth zooming (Reanimated)
  • Fast pause and resume
  • 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!