quickpose-ios-sdk icon indicating copy to clipboard operation
quickpose-ios-sdk copied to clipboard

Left and Right Arm does not working properly

Open priyankgandhi0 opened this issue 7 months ago • 0 comments

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")
            }
        }

priyankgandhi0 avatar Apr 15 '25 06:04 priyankgandhi0