Go to file
2021-06-29 10:14:33 +02:00
.github chore: Also run CI on android-npm changes 2021-06-29 09:22:05 +02:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android fix: Report all errors to JS in configureSession 2021-06-29 10:14:33 +02:00
android-npm fix: Fix autolinking for android (#231) 2021-06-28 17:27:24 +02:00
cpp fix: React Native 0.65 compatibility (#230) 2021-06-28 18:27:03 +02:00
docs docs: Update documentation titles 2021-06-28 15:56:49 +02:00
example Update Podfile.lock 2021-06-28 20:51:12 +02:00
ios feat: Print Frame Processor errors to Metro console 2021-06-28 20:44:50 +02:00
patches feat: Frame Processors for Android (#196) 2021-06-27 12:37:54 +02:00
scripts update clean scripts 2021-06-28 10:25:47 +02:00
src fix: Fix unset Frame Processor not being called 2021-06-29 09:05:18 +02:00
.eslintrc.js feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
.gitignore feat: Frame Processors for Android (#196) 2021-06-27 12:37:54 +02:00
.prettierrc.js Reformat (#116) 2021-03-31 15:43:29 +02:00
babel.config.js Fix include 2021-02-20 17:09:57 +01:00
CODE_OF_CONDUCT.md chore: Move to /mrousavy/ (#224) 2021-06-21 22:42:46 +02:00
CONTRIBUTING.md feat: Frame Processors for Android (#196) 2021-06-27 12:37:54 +02:00
LICENSE chore: Move to /mrousavy/ (#224) 2021-06-21 22:42:46 +02:00
package.json chore: release 2.4.2-beta.5 2021-06-29 09:07:14 +02:00
README.md Update README.md 2021-06-22 12:28:12 +02: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 Fix npm package size 2021-04-08 12:30:22 +02:00
VisionCamera.podspec fix: React Native 0.65 compatibility (#230) 2021-06-28 18:27:03 +02:00
yarn.lock fix: patch-package install error 2021-06-28 09:24:37 +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!