For the complete documentation index, see llms.txt. This page is also available as Markdown.

People and Vehicles (Low)

Input and output format for the default People and Vehicles Detection (Low Accuracy) demo model.

This AI model, based on YOLOv11-small (YOLOv11s), is trained to detect a limited set of object classes. It runs at a lower input resolution than the High Accuracy variant, trading detection accuracy for lower compute requirements. Use this model when frame rate or hardware resources matter more than catching every object, especially small or distant ones.

Detected Classes

  • Person

  • Bicycle

  • Car

  • Motorcycle

  • Bus

  • Train

  • Truck

Input

The input tensor dimension for this model is 320 wide by 320 high.

This model accepts the following extra input information:

  • Mask: excludes or includes a specific region of the camera view.

  • Sensitivity threshold: NMS sensitivity.

Output

Each detected object is identified using a bounding box represented by a vector: [x1, y1, x2, y2, score, class]. The object bounding boxes contain the following information:

  • Position and size coordinates, to be used as a rectangular bounding box.

  • A confidence score, which helps retain only the most confident and accurate detections while suppressing weaker or redundant ones.

  • Class, a textual string of the main category the detected object belongs to.

The following image shows an example of this model's output:

Camera view with bounding boxes labeling cars, motorcycles, and people in traffic
Example people and vehicles detection output in the desktop client

Postprocessors

This model's detections can be combined with any of the built-in postprocessors, for example:

See Postprocessors for the full list and configuration details.

Last updated