quickpose-ios-sdk
quickpose-ios-sdk copied to clipboard
Left and Right Arm does not working properly
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")
}
}