YOLOStreamingConfig.withPoses constructor

const YOLOStreamingConfig.withPoses()

Creates a configuration with pose keypoints.

Suitable for pose estimation models where you need keypoint data. Includes skeleton information for detected human poses.

Typical performance: 20-30 FPS depending on device and number of people.

Implementation

const YOLOStreamingConfig.withPoses()
  : includeDetections = true,
    includeClassifications = true,
    includeProcessingTimeMs = true,
    includeFps = true,
    includeMasks = false,
    includePoses = true,
    includeOBB = false,
    includeOriginalImage = false,
    maxFPS = null,
    throttleInterval = null,
    inferenceFrequency = null,
    skipFrames = null;