@paddlejs-models/detect
v1.1.2
Published
[中文版](./README_cn.md)
Downloads
8
Keywords
Readme
detect
detect model is used to detect the position of label frame in the image.
Run Demo
- Execute in the current directory
npm install
npm run dev
- Visit http://0.0.0.0:8890
Usage
import * as det from '@paddlejs-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]);
});