react-native-vision-camera/docs/docs/guides/FRAME_PROCESSOR_PLUGIN_LIST.mdx
Rodrigo Gomes 58e586220e
feat: add qrcode scanner plugin (#417)
* add qrcode scanner plugin

* chore: update FRAME_PROCESSOR_PLUGIN_LIST
2021-09-10 12:31:57 +02:00

54 lines
1.8 KiB
Plaintext

---
id: frame-processor-plugin-list
title: Community Plugins
sidebar_label: Community Plugins
---
These are VisionCamera Frame Processor Plugins created by the community.
## Installing a Plugin
1. Install using npm:
```
npm i vision-camera-xxxxx
```
2. Add the native function's name (the one with the `__` prefix) to your `babel.config.js`. (See their README for instructions)
:::note
You have to restart metro-bundler for changes in the `babel.config.js` file to take effect.
:::
## Plugin List
* [mrousavy/**vision-camera-image-labeler**](https://github.com/mrousavy/vision-camera-image-labeler): A plugin to label images using MLKit Vision Image Labeler.
* [mrousavy/**vision-camera-resize-plugin**](https://github.com/mrousavy/vision-camera-resize-plugin): A plugin for fast frame resizing to optimize execution speed of expensive AI algorithms.
* [rodgomesc/**vision-camera-face-detector**](https://github.com/rodgomesc/vision-camera-face-detector): A plugin to detect faces using MLKit Vision Face Detector.
* [rodgomesc/**vision-camera-ocr**](https://github.com/rodgomesc/vision-camera-ocr): A plugin to recognize text in any Latin-based character set using MLKit Text Recognition.
* [rodgomesc/**vision-camera-qrcode-scanner**](https://github.com/rodgomesc/vision-camera-qrcode-scanner): A plugin to read barcodes using MLKit Vision QrCode Scanning
* [mrousavy/**Colorwaver**](https://github.com/mrousavy/Colorwaver): An app (+ plugin) to detect color palettes in the real world.
<!-- Add your Frame Processor Plugin here! -->
<br />
<br />
<br />
<p align="center">
<b>
<a href="https://github.com/mrousavy/react-native-vision-camera/edit/main/docs/docs/guides/FRAME_PROCESSOR_PLUGIN_LIST.mdx">Click here</a> to add your Frame Processor Plugin to this list!
</b>
</p>
<br />
<br />
<br />
#### 🚀 Next section: [Zooming](/docs/guides/zooming)