2021-03-03 12:37:43 +01:00
|
|
|
<h1 align="center">Vision Camera</h1>
|
2021-02-19 16:08:26 +01:00
|
|
|
|
|
|
|
<div align="center">
|
2021-03-03 12:37:43 +01:00
|
|
|
<img src="docs/static/img/11.png" width="50%">
|
2021-02-19 16:08:26 +01:00
|
|
|
<br />
|
|
|
|
<br />
|
2021-04-08 12:27:38 +02:00
|
|
|
<blockquote><b>📸 The Camera library that sees the vision.</b></blockquote>
|
2021-04-08 13:40:28 +02:00
|
|
|
<pre align="center">npm i <a href="https://www.npmjs.com/package/react-native-vision-camera">react-native-vision-camera</a><br/>npx pod-install </pre>
|
2021-03-23 15:25:27 +01:00
|
|
|
<a href="https://cuvent.com">
|
|
|
|
<img height="40" src="docs/static/img/cuvent-logo-text.svg" />
|
|
|
|
</a>
|
2021-02-25 13:02:10 +01:00
|
|
|
<br/>
|
2021-02-25 13:41:07 +01:00
|
|
|
<span>
|
|
|
|
<a align="center" href="https://github.com/mrousavy?tab=followers">
|
2021-02-25 13:45:45 +01:00
|
|
|
<img src="https://img.shields.io/github/followers/mrousavy?label=Follow%20%40mrousavy&style=social" />
|
2021-02-25 13:41:07 +01:00
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
<br />
|
|
|
|
<span>
|
|
|
|
<a align="center" href="https://twitter.com/mrousavy">
|
|
|
|
<img src="https://img.shields.io/twitter/follow/mrousavy?label=Follow%20%40mrousavy&style=social" />
|
|
|
|
</a>
|
|
|
|
</span>
|
2021-02-19 16:08:26 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
|
2021-02-20 16:45:10 +01:00
|
|
|
<div>
|
2021-03-03 12:37:43 +01:00
|
|
|
<img align="right" width="35%" src="docs/static/img/example.png">
|
2021-02-20 16:45:10 +01:00
|
|
|
</div>
|
2021-02-19 16:08:26 +01:00
|
|
|
|
2021-03-03 12:37:43 +01:00
|
|
|
### Documentation
|
|
|
|
|
2021-03-23 15:25:27 +01:00
|
|
|
* [Guides](https://cuvent.github.io/react-native-vision-camera/docs/guides)
|
2021-03-03 20:48:57 +01:00
|
|
|
* [API](https://cuvent.github.io/react-native-vision-camera/docs/api)
|
|
|
|
* [Example](./example/)
|
2021-03-03 12:37:43 +01:00
|
|
|
|
2021-02-20 16:48:32 +01:00
|
|
|
### Features
|
|
|
|
|
2021-03-23 17:08:06 +01:00
|
|
|
* Photo, Video and Snapshot capture
|
2021-03-23 17:10:17 +01:00
|
|
|
* Customizable devices and multi-cameras (smoothly zoom out to "fish-eye" camera)
|
2021-02-20 16:51:13 +01:00
|
|
|
* Customizable FPS
|
2021-05-06 14:11:55 +02:00
|
|
|
* Frame Processors (JS worklets to run QR-Code scanning, facial recognition, AI object detection, realtime video chats and more)
|
2021-03-23 17:08:06 +01:00
|
|
|
* Smooth zooming (Reanimated)
|
|
|
|
* Fast pause and resume
|
2021-02-20 16:48:32 +01:00
|
|
|
* HDR & Night modes
|
|
|
|
|
2021-02-20 16:49:13 +01:00
|
|
|
> See the [example](./example/) app
|
|
|
|
|
2021-02-20 16:45:10 +01:00
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
function App() {
|
2021-02-22 09:43:47 +01:00
|
|
|
const devices = useCameraDevices('wide-angle-camera')
|
|
|
|
const device = devices.back
|
2021-02-20 16:45:10 +01:00
|
|
|
|
2021-03-01 12:41:59 +01:00
|
|
|
if (device == null) return <LoadingView />
|
2021-02-20 16:45:10 +01:00
|
|
|
return (
|
|
|
|
<Camera
|
|
|
|
style={StyleSheet.absoluteFill}
|
|
|
|
device={device}
|
2021-02-23 10:56:05 +01:00
|
|
|
isActive={true}
|
2021-02-20 16:45:10 +01:00
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
```
|
2021-02-24 21:56:50 +01:00
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2021-03-23 15:29:24 +01:00
|
|
|
#### 🚀 Get started by [setting up permissions](https://cuvent.github.io/react-native-vision-camera/docs/guides/)!
|