uch-image-detection

A node module to interpret screenshots of UCH


Keywords
UCH
License
GPL-3.0
Install
npm install uch-image-detection@0.0.3

Documentation

uch-image-detection

A node module to interpret screenshots of UCH

Installation

This module is installed via npm:

npm install --save uch-image-detection

Usage

const imageUrl = 'test-image.png'

const uchImageDetection = require('uch-image-detection');

uchImageDetection(imageUrl)
    .then((playerScores) => {
        console.log(playerScores)
    })
    .catch((error) => {
        console.error(error)
    })