Go to file
Marc Rousavy 4038db2e28
feat: Frame Processors: Allow returning Frames (support for resize and other frame manipulations) (#185)
* batch

* Init Frame as box

* Use ObjC syntax

* Fix access

* Revert "Fix access"

This reverts commit 7de09e52739d4c2b53f485d5ed696f1665fa5737.

* Revert "Use ObjC syntax"

This reverts commit e33f05ae8451cc4ee24af41d14dc76a57c157554.

* Revert "Init Frame as box"

This reverts commit 5adafb6109bfbf7fddb8ddc4af7d306b7b76b476.

* use holder

* convert buffer <-> jsi object

* add docs

* add more docs

* Update JSIUtils.mm

* Update FRAME_PROCESSORS_CREATE_OVERVIEW.mdx

* Update CameraView+RecordVideo.swift
2021-06-08 14:20:07 +02:00
.github fix: Fix CI (#165) 2021-06-04 12:32:20 +02:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android chore(deps): Upgrade CameraX to alpha05 (#180) 2021-06-07 13:15:49 +02:00
cpp feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
docs feat: Frame Processors: Allow returning Frames (support for resize and other frame manipulations) (#185) 2021-06-08 14:20:07 +02:00
example feat: Frame Processors: Allow returning Frames (support for resize and other frame manipulations) (#185) 2021-06-08 14:20:07 +02:00
ios feat: Frame Processors: Allow returning Frames (support for resize and other frame manipulations) (#185) 2021-06-08 14:20:07 +02:00
scripts fix: Fix AVAudioSession not allowing background music playback (#155) 2021-06-01 13:07:57 +02:00
src docs: Lifecycle (#182) 2021-06-07 15:55:20 +02:00
.eslintrc.js feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
.gitignore feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +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 Create CODE_OF_CONDUCT.md 2021-03-04 14:18:37 +01:00
CONTRIBUTING.md feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
LICENSE Update LICENSE 2021-02-25 22:48:21 +01:00
package.json chore(deps-dev): bump typescript from 4.2.4 to 4.3.2 (#158) 2021-06-08 14:06:58 +02:00
README.md Update README.md 2021-06-07 13:19:42 +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 feat: Frame Processors: Allow returning Frames (support for resize and other frame manipulations) (#185) 2021-06-08 14:20:07 +02:00
yarn.lock chore(deps-dev): bump typescript from 4.2.4 to 4.3.2 (#158) 2021-06-08 14:06:58 +02:00

Vision Camera



📸 The Camera library that sees the vision.
npm i react-native-vision-camera
npx pod-install




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!