Go to file
dependabot[bot] 6dc9c1251a
chore(deps-dev): bump metro-config from 0.66.0 to 0.66.2 in /example (#302)
Bumps [metro-config](https://github.com/facebook/metro) from 0.66.0 to 0.66.2.
- [Release notes](https://github.com/facebook/metro/releases)
- [Changelog](https://github.com/facebook/metro/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/metro/compare/v0.66.0...v0.66.2)

---
updated-dependencies:
- dependency-name: metro-config
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-06 10:43:52 +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 format Preview and Video Capture resolution setting (#325) 2021-08-05 15:54:01 +02:00
docs chore(deps): bump @docusaurus/preset-classic in /docs (#317) 2021-08-06 10:36:01 +02:00
example chore(deps-dev): bump metro-config from 0.66.0 to 0.66.2 in /example (#302) 2021-08-06 10:43:52 +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-dev): bump @types/react-native from 0.64.10 to 0.64.12 (#278) 2021-08-06 10:43:29 +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!