YOLOStreamingConfig.full constructor

const YOLOStreamingConfig.full()

Creates a full configuration with all data included.

This includes all possible data: detections, masks, poses, OBB, and original images. Use with caution as it significantly impacts performance and memory usage.

Ideal for:

  • Debugging and development
  • Non-real-time processing
  • When all detection data is needed

Typical performance: 5-15 FPS depending on device and model complexity.

Implementation

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