mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-05 16:48:03 +08:00

* add application include paddle.js web demo and xcx * cp PR #5 * add readme * fix comments and link * fix xcx readme * fix Task 1 * fix bugs * refine readme * delete ocrxcx readme * refine readme * fix bugs * delete old readme * 200px to 300px * revert 200px to 300px Co-authored-by: Jason <jiangjiajun@baidu.com>
gesture
gesture is a gesture recognition module, including two models: gesture_detect and gesture_rec. gesture_detect model is used to identify the palm area of the person in the image. gesture_rec model is used to recognize human gesture. The interface provided by the module is simple, users only need to pass in gesture images to get the results.
Usage
import * as gesture from '@paddle-js-models/gesture';
// Load gesture_detect model and gesture_rec model
await gesture.load();
// Get the image recognition results. The results include: palm frame coordinates and recognition results
const res = await gesture.classify(img);
Online experience
https://paddlejs.baidu.com/gesture
Performance
