I am trying to use Vision framework in iOS but getting below error in logs.
Not able to find any resources in Developer Forums.
Any help would be appreciated!
ABPKPersonIDTracker not supported on this device
Failed to initialize ABPK Person ID Tracker
public func runHumanBodyPose3DRequest() {
let request = VNDetectHumanBodyPose3DRequest()
let requestHandler = VNImageRequestHandler(url: filePath!)
do {
try requestHandler.perform([request])
if let returnedObservation = request.results?.first {
self.humanObservation = returnedObservation
print(humanObservation)
}
} catch let error{
print(error.localizedDescription)
}
}