All Projects → mrousavy → vision-camera-image-labeler

mrousavy / vision-camera-image-labeler

Licence: MIT license
VisionCamera Frame Processor Plugin to label images using MLKit Vision

Programming Languages

java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language
swift
15916 projects

Projects that are alternatives of or similar to vision-camera-image-labeler

Myvision
Computer vision based ML training data generation tool 🚀
Stars: ✭ 453 (+630.65%)
Mutual labels:  ml, vision
Grip
Program for rapidly developing computer vision applications
Stars: ✭ 314 (+406.45%)
Mutual labels:  camera, vision
sim2real-docs
Synthesize image datasets of documents in natural scenes with Python+Blender3D
Stars: ✭ 39 (-37.1%)
Mutual labels:  ml, vision
Multi sensor fusion
Multi-Sensor Fusion (GNSS, IMU, Camera) 多源多传感器融合定位 GPS/INS组合导航 PPP/INS紧组合
Stars: ✭ 357 (+475.81%)
Mutual labels:  camera, vision
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 (+3029.03%)
Mutual labels:  camera, vision
flutter-vision
iOS and Android app built with Flutter and Firebase. Includes Firebase ML Vision, Firestore, and Storage
Stars: ✭ 45 (-27.42%)
Mutual labels:  ml, vision
VisionLab
📺 A framework with common source code for demo projects that use Vision Framework
Stars: ✭ 32 (-48.39%)
Mutual labels:  camera, vision
Aravis
A vision library for genicam based cameras
Stars: ✭ 397 (+540.32%)
Mutual labels:  camera, vision
React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (+614.52%)
Mutual labels:  camera, vision
CustomVisionMicrosoftToCoreMLDemoApp
This app recognises 3 hand signs - fist, high five and victory hand [ rock, paper, scissors basically :) ] with live feed camera. It uses a HandSigns.mlmodel which has been trained using Custom Vision from Microsoft.
Stars: ✭ 25 (-59.68%)
Mutual labels:  ml, vision
Vision CoreML-App
This app predicts the age of a person from the picture input using camera or photos gallery. The app uses Core ML framework of iOS for the predictions. The Vision library of CoreML is used here. The trained model fed to the system is AgeNet.
Stars: ✭ 15 (-75.81%)
Mutual labels:  camera, vision
HRFormer
This is an official implementation of our NeurIPS 2021 paper "HRFormer: High-Resolution Transformer for Dense Prediction".
Stars: ✭ 357 (+475.81%)
Mutual labels:  vision
syntalos
Flow-based synchronized parallel DAQ from diverse sources and flexible control for neuroscience experiments
Stars: ✭ 13 (-79.03%)
Mutual labels:  camera
Keras-Application-Zoo
Reference implementations of popular DL models missing from keras-applications & keras-contrib
Stars: ✭ 31 (-50%)
Mutual labels:  ml
AutonomousPrecisionLanding
Precision landing on a visual target using OpenCV and dronekit-python
Stars: ✭ 31 (-50%)
Mutual labels:  vision
e-verest
EVEREST: e-Versatile Research Stick for peoples
Stars: ✭ 21 (-66.13%)
Mutual labels:  vision
blockbuster
The Machinima Studio mod
Stars: ✭ 108 (+74.19%)
Mutual labels:  camera
deepchecks
Test Suites for Validating ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.
Stars: ✭ 1,595 (+2472.58%)
Mutual labels:  ml
PuzzleLib
Deep Learning framework with NVIDIA & AMD support
Stars: ✭ 52 (-16.13%)
Mutual labels:  ml
CamRaptor
CamRaptor is a tool that exploits several vulnerabilities in popular DVR cameras to obtain network camera credentials.
Stars: ✭ 106 (+70.97%)
Mutual labels:  camera

vision-camera-image-labeler

A VisionCamera Frame Processor Plugin to label images using MLKit Vision Image Labeling.

Installation

npm install vision-camera-image-labeler
cd ios && pod install

Add the plugin to your babel.config.js:

module.exports = {
  plugins: [
    [
      'react-native-reanimated/plugin',
      {
        globals: ['__labelImage'],
      },
    ],

    // ...

Note: You have to restart metro-bundler for changes in the babel.config.js file to take effect.

Usage

import { labelImage } from "vision-camera-image-labeler";

// ...

const frameProcessor = useFrameProcessor((frame) => {
  'worklet';
  const labels = labelImage(frame);
}, []);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

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].