Guest User

Untitled

a guest
Feb 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import Fritz
  2.  
  3. class PoseEstimationViewController: UIViewController {
  4.  
  5. private let poseModel = FritzVisionPoseModel()
  6. // We can also set of sensitivity parameters for our model.
  7. // The poseThreshold is a number between 0 and 1. Higher numbers mean
  8. // the model must be more confident about its estimate, thus reducing false
  9. // positives.
  10. internal var poseThreshold: Double = 0.3
  11. // The rest of your view controller...
  12. }
Add Comment
Please, Sign In to add comment