UNPKG

mindee

Version:

Mindee Client Library for Node.js

10 lines (9 loc) 280 B
import { Polygon } from "../../../geometry/index.js"; export class Word { constructor(rawPrediction) { this.polygon = new Polygon(...rawPrediction["polygon"]); this.text = rawPrediction["text"]; this.confidence = rawPrediction["confidence"]; } } ;