VisionCamera Frame Processor Plugin to label images using MLKit Vision

A VisionCamera Frame Processor Plugin to indetify specific objects in image to create text out of the tumbstones.
``sh`
npm install vision-camera-cs-card-reader
cd ios && pod install
Add the plugin to your babel.config.js:
`js
module.exports = {
plugins: [
[
'react-native-reanimated/plugin',
{
globals: ['__findCard'],
},
],
// ...
`
> Note: You have to restart metro-bundler for changes in the babel.config.js file to take effect.
`js
import { findCard } from "vision-camera-cs-card-reader";
// ...
const frameProcessor = useFrameProcessor((frame) => {
'worklet';
const labels = findCard(frame);
}, []);
``
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT