Go to file
2021-08-05 09:44:49 +02:00
.github chore: fix the permission issue for dependabot (#286) 2021-07-26 09:42:51 +02:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android fix: Fix java.lang.NoSuchMethodError error for .toArrayList() (#322) 2021-08-04 16:07:08 +02:00
docs fix: Fix java.lang.NoSuchMethodError error for .toArrayList() (#322) 2021-08-04 16:07:08 +02:00
example feat: Correctly get videoDimensions on devices below iOS 13 2021-08-03 10:37:48 +02:00
ios chore: Lint Swift 2021-08-03 12:01:39 +02:00
scripts fix: Distribute Android code as source (#234) 2021-07-08 10:52:14 +02:00
src feat: Add console logging support for Frame Processors (#297) 2021-07-30 10:27:45 +02:00
.eslintrc.js chore: cleanup the ESLint setup (#276) 2021-07-14 13:04:17 +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: release 2.4.2-beta.13 2021-08-05 09:44:49 +02:00
README.md docs: Add link to Frame Processors to README 2021-07-06 10:26:41 +02:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.json chore: Clean up root directory (#236) 2021-07-06 16:42:58 +02:00
VisionCamera.podspec fix: React Native 0.65 compatibility (#230) 2021-06-28 18:27:03 +02:00
yarn.lock chore(deps): Upgrade react-native-reanimated to alpha.2 (#309) 2021-07-30 09:50:09 +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!