Frame Processor Plugins
Frame Processor Plugins are native plugins that can process data in a Frame and return values to a JS Frame Processor.
These plugins are written in native languages such as Java/Kotlin, Objective-C/Swift, or even C++ to make use of GPU-acceleration, low-level APIs, and overall faster performance.
Similar to react-native libraries, Frame Processor Plugins are distributed through npm and come with a native module boilerplate so they can be autolinked.
Installing a Plugin​
- Install using npm:
 
npm i vision-camera-xxxxx
cd ios && pod install
- Rebuild your app and use the plugin
 
Plugin List​
- mrousavy/react-native-fast-tflite: A plugin to run any Tensorflow Lite model inside React Native, written in C++ with GPU acceleration.
 - mrousavy/vision-camera-resize-plugin: A plugin for fast frame resizing, cropping and YUV/RGB pixel-format conversion using SIMD and CPU-Vector acceleration.
 - mrousavy/vision-camera-image-labeler: A plugin to label images using MLKit Vision Image Labeler.
 - rodgomesc/vision-camera-face-detector: A plugin to detect faces using MLKit Vision Face Detector.
 - rodgomesc/vision-camera-qrcode-scanner: A plugin to read barcodes using MLKit Vision QrCode Scanning
 - mgcrea/vision-camera-barcode-scanner: A high performance barcode scanner for React Native using VisionCamera
 - mrousavy/Colorwaver: An app (+ plugin) to detect color palettes in the real world.
 - xulihang/vision-camera-dynamsoft-barcode-reader: A plugin to read barcodes using Dynamsoft Barcode Reader.
 - xulihang/vision-camera-dynamsoft-label-recognizer: A plugin to recognize text on labels, MRZ passports, etc. using Dynamsoft Label Recognizer.
 - tony-xlh/vision-camera-dynamsoft-document-normalizer: A plugin to scan documents using Dynamsoft Document Normalizer with features like document border detection and perspective transformation.
 - aarongrider/vision-camera-ocr: A plugin to detect text in real time using MLKit Text Detector (OCR).
 - yasintorun/vision-camera-base64: A plugin to convert a Frame to a base64 string.
 
Click here to add your Frame Processor Plugin to this list!