poseDetector method

PoseDetector poseDetector({
  1. PoseDetectorOptions? poseDetectorOptions,
})

Returns instance of PoseDetector.By default it returns all PoseLandmark available in image To limit the result to specific PoseLandmark pass list of PoseLandmark's a All the 33 positions have been declared as static constants in PoseLandmark class

Implementation

PoseDetector poseDetector({PoseDetectorOptions? poseDetectorOptions}) {
  return PoseDetector(poseDetectorOptions ?? PoseDetectorOptions());
}