Marc Rousavy 4118fd17eb
docs: Add Frame Processor benchmarks (#154)
* remove snapcode docs

* Add benchmarks

* Update FRAME_PROCESSORS.mdx
2021-05-30 12:13:50 +02:00
2021-02-20 17:13:02 +01:00
2021-05-06 14:11:55 +02:00
2021-03-31 15:43:29 +02:00
2021-02-20 17:09:57 +01:00
2021-03-04 14:18:37 +01:00
2021-02-25 22:48:21 +01:00
2021-05-28 17:12:28 +02:00
2021-05-06 14:11:55 +02:00
2021-02-19 16:07:53 +01:00
2021-04-08 12:30:22 +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 and more)
  • 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!

Description
No description provided
Readme 56 MiB
Languages
Swift 29.9%
Kotlin 26.7%
TypeScript 17.6%
C++ 11.2%
Objective-C++ 7%
Other 7.6%