Go to file
Marc Rousavy 445af943c3
feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306)
* Make `zoom` go on "factor" scale

* Clean up `zoom` code

* fix float conversion

* fix zoom interpretation

* Update docs for new zoom scale

* fix float conversion
2021-07-29 11:44:22 +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 feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306) 2021-07-29 11:44:22 +02:00
docs feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306) 2021-07-29 11:44:22 +02:00
example feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306) 2021-07-29 11:44:22 +02:00
ios feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306) 2021-07-29 11:44:22 +02:00
scripts fix: Distribute Android code as source (#234) 2021-07-08 10:52:14 +02:00
src feat: BREAKING CHANGE: Express zoom factor always in actual factor value (1, 2, 128, ...) instead of 0.0-1.0 scale (#306) 2021-07-29 11:44:22 +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: Also show dependency upgrades in release notes 2021-07-26 11:38:12 +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: cleanup the ESLint setup (#276) 2021-07-14 13:04:17 +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!