-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
I used this code to detect left and right arm gestures with both the front and back cameras. The arm gesture appears, but when the left or right arm is raised, it returns .noPersonFound.
quickPose.start(features:[.overlay(.arm(side: .left)),.overlay(.arm(side: .right))]) { status, image, features, feedback, landmarks in
DispatchQueue.main.async {
self.overlayView.image = image
}
switch status{
case .success:
guard let feature = features.first?.key as? QuickPose.Feature else {
return
}
case .noPersonFound:
print("No Person Found")
case .sdkValidationError:
print("Be back soon")
}
}
Metadata
Metadata
Assignees
Labels
No labels