detect model is used to detect the position of label frame in the image.
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]);
});