YOLOStreamingConfig.debug constructor

const YOLOStreamingConfig.debug()

Creates a debug configuration with all data and images.

This includes everything from full() plus original camera frames. Extremely resource-intensive and should only be used for debugging.

WARNING: This configuration will significantly impact performance and may cause memory issues on lower-end devices.

Typical performance: 2-10 FPS depending on device and image resolution.

Implementation

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