Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 443 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 443 Bytes

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)
    })