Git Product home page Git Product logo

expo-coreml's Introduction

expo-coreml


  • Use Hermes Engine
  • Create custom expo dev build to use in development

  • Object Detection (VNRecognizedObjectObservation)
  • Classify Object (VNClassificationObservation)

Installation

yarn add expo-coreml
npm install expo-coreml

Usage

import * as ExpoCoreml from 'expo-coreml';
import * as FileSystem from "expo-file-system";
import * as ImagePicker from 'expo-image-picker';

export default function MyCompnent(){

    const compileModel = async () => {
        const compiledUrl = await ExpoCoreml.compileModel("fileURI of .mlmodel");
        if(!!url){
            await FileSystem.copyAsync({from: url, to: FileSystem.documentDirectory + 'myCompiledModel.mlmodelc'});
            await FileSystem.deleteAsync(url);
        }
    }

    // Detection
    const handlePredict = async () => {

        const images = await ImagePicker.launchImageLibraryAsync({
            quality: 1
        });
        if(!!images.assets){
            for (const image of images.assets){
                // console.log(image.uri)
                const res = await ExpoCoreml.predict(
                    FileSystem.documentDirectory + 'myCompiledModel.mlmodelc',
                    image.uri,
                );

                const refactorSize = res.map(item => {
                    return {
                        ...item,
                        boundingBox: {
                            x: item?.boundingBox?.x * image.width,
                            y: (1 - (item?.boundingBox?.y + item?.boundingBox?.height)) * img.height,
                            width: item?.boundingBox?.width * image.width,
                            height: item?.boundingBox?.height * image.height
                        }
                    }
                });

                console.log(refactorSize);
                console.log("Totals => ", refactorSize.length);

            }
        }
    }
    
    // Classification
    const handleClassify = async () => {

        const images = await ImagePicker.launchImageLibraryAsync({
            quality: 1
        });
        if(!!images.assets){
            for (const image of images.assets){
                
                const res = await ExpoCoreml.classify(
                    FileSystem.documentDirectory + 'modelClassify.mlmodelc',
                    image.uri,
                );

                console.log(res);

            }
        }
    }

    return (
        <View/>
    );
}

expo-coreml's People

Contributors

aclec avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.