@paddle-js-models/detect
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

中文版

detect

detect model is used to detect the position of label frame in the image.

version size downloads downloads

Usage

import * as det from '@paddle-js-models/detect';

// Load model
await det.load();

// Get label index, confidence and coordinates
const res = await det.detect(img);

res.forEach(item => {
    // Get label index
    console.log(item[0]);
    // Get label confidence
    console.log(item[1]);
    // Get label left coordinates
    console.log(item[2]);
    // Get label top coordinates
    console.log(item[3]);
    // Get label right coordinates
    console.log(item[4]);
    // Get label bottom coordinates
    console.log(item[5]);
});

effect

img.png

Readme

Keywords

none

Package Sidebar

Install

npm i @paddle-js-models/detect

Weekly Downloads

13

Version

3.0.1

License

ISC

Unpacked Size

39.9 kB

Total Files

9

Last publish

Collaborators

  • qianhechen