Go to file
2021-08-20 17:37:13 +02:00
.github fix: Fix TypeScript relative imports (#358) 2021-08-16 10:45:41 +02:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android Revert "fix: Fix Frame Processor null-dereference error (use ref-counted JNI local_ref) (#351)" 2021-08-20 16:05:09 +02:00
docs Update FRAME_PROCESSOR_PLUGIN_LIST.mdx 2021-08-16 16:44:56 +02:00
example feat: Add react-native 0.65 support (#378) 2021-08-20 11:53:40 +02:00
ios fix: Fix close being called on a collected reference (enforce alias_ref) (#379) 2021-08-20 16:05:02 +02:00
scripts fix: Distribute Android code as source (#234) 2021-07-08 10:52:14 +02:00
src fix: Fix TypeScript relative imports (#358) 2021-08-16 10:45:41 +02:00
.eslintrc.js fix: Fix TypeScript relative imports (#358) 2021-08-16 10:45:41 +02:00
.gitignore fix: Distribute Android code as source (#234) 2021-07-08 10:52:14 +02:00
app.plugin.js feat: Expo support (#260) 2021-07-07 14:55:25 +02:00
CODE_OF_CONDUCT.md chore: Move to /mrousavy/ (#224) 2021-06-21 22:42:46 +02:00
CONTRIBUTING.md chore: Update CONTRIBUTING guidelines 2021-07-14 13:17:16 +02:00
LICENSE chore: Move to /mrousavy/ (#224) 2021-06-21 22:42:46 +02:00
package.json chore: fix bootstrap script (#381) 2021-08-20 17:37:13 +02:00
README.md docs: Add link to Frame Processors to README 2021-07-06 10:26:41 +02:00
tsconfig.json fix: Fix TypeScript relative imports (#358) 2021-08-16 10:45:41 +02:00
VisionCamera.podspec fix: React Native 0.65 compatibility (#230) 2021-06-28 18:27:03 +02:00
yarn.lock feat: Add react-native 0.65 support (#378) 2021-08-20 11:53:40 +02:00

Vision Camera



📸 The Camera library that sees the vision.
npm i react-native-vision-camera
npx pod-install
Buy Me a Coffee at ko-fi.com



Documentation

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, ...)
  • 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!