hand-it
Version:
Easily add hand gestures to your react app
23 lines (22 loc) • 402 B
JavaScript
const poseParameters = {
pose1: "Point Up",
pose2: "Point Down",
pose3: "OK",
pose4: "Fist",
classifySpeed: 300,
webcamWidth: 640,
webcamHeight: 480,
pose1Action: () => {
return
},
pose2Action: () => {
return
},
pose3Action: () => {
return
},
pose4Action: () => {
return
}
}
export {poseParameters};