All Projects → cuvent → React Native Vision Camera

cuvent / React Native Vision Camera

Licence: mit
📸 The Camera library that sees the vision.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to React Native Vision Camera

Nextlevel
NextLevel was initally a weekend project that has now grown into a open community of camera platform enthusists. The software provides foundational components for managing media recording, camera interface customization, gestural interaction customization, and image streaming on iOS. The same capabilities can also be found in apps such as Snapchat, Instagram, and Vine.
Stars: ✭ 1,940 (+337.92%)
Mutual labels:  snapchat, camera, vision, instagram, ar
Stealing Ur Feelings
Winner of Mozilla's $50,000 prize for art and advocacy exploring AI
Stars: ✭ 784 (+76.98%)
Mutual labels:  ai, snapchat, instagram, ar
Instascan
HTML5 QR code scanner using your webcam
Stars: ✭ 2,657 (+499.77%)
Mutual labels:  qr-code, camera, qrcode
Jeelizfacefilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 2,042 (+360.95%)
Mutual labels:  snapchat, camera, library
Ypimagepicker
📸 Instagram-like image picker & filters for iOS
Stars: ✭ 3,661 (+726.41%)
Mutual labels:  camera, library, instagram
Code Scanner
Code scanner library for Android, based on ZXing
Stars: ✭ 543 (+22.57%)
Mutual labels:  qr-code, library, scanner
Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+377.88%)
Mutual labels:  qr-code, qrcode, scanner
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+121.67%)
Mutual labels:  qr-code, qrcode, scanner
Instapy Cli
✨ Python library and CLI to upload photo and video on Instagram. W/o a phone!
Stars: ✭ 498 (+12.42%)
Mutual labels:  api, library, instagram
Instagram Api
Instagram's private API
Stars: ✭ 5,168 (+1066.59%)
Mutual labels:  api, library, instagram
Amadeus Node
Node library for the Amadeus Self-Service travel APIs
Stars: ✭ 91 (-79.46%)
Mutual labels:  api, ai, library
Unitybarcodescanner
Simple Unity Barcode Scanner
Stars: ✭ 180 (-59.37%)
Mutual labels:  camera, qrcode, scanner
Hybridcamera
Video and photo camera for iOS
Stars: ✭ 145 (-67.27%)
Mutual labels:  snapchat, camera, instagram
Instagram Api Python
Unofficial instagram API, give you access to ALL instagram features (like, follow, upload photo and video and etc)! Write on python.
Stars: ✭ 2,357 (+432.05%)
Mutual labels:  api, library, instagram
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-65.69%)
Mutual labels:  api, ai, library
Ngx Scanner
Angular (2+) QR code, Barcode, DataMatrix, scanner component using ZXing.
Stars: ✭ 420 (-5.19%)
Mutual labels:  qr-code, camera, scanner
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (-33.86%)
Mutual labels:  qrcode, scanner
Program Y
Python 3.x based AIML 2.0 Chatbot interpreter, framework, related programs and knowledge files
Stars: ✭ 281 (-36.57%)
Mutual labels:  api, ai
Zuck.js
A javascript library that lets you add stories EVERYWHERE.
Stars: ✭ 3,396 (+666.59%)
Mutual labels:  snapchat, instagram
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (-26.86%)
Mutual labels:  snapchat, instagram

Vision Camera



📸 The Camera library that sees the vision.






Documentation

Install

npm i react-native-vision-camera
npx pod-install

Features

  • Photo and Video capture
  • Customizable device (ultra-wide-angle, wide-angle, telephoto and virtual multi-cameras)
  • Customizable FPS
  • JS worklet frame processors powered by JSI and Reanimated (Work in progress: #2)
  • Reanimated zooming
  • 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!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].