RGB & Tiny YOLO =============== This example shows how to run YOLO on the RGB input frame, and how to display both the RGB preview and the metadata results from the YOLO model on the preview. Decoding is done on the `RVC `__ instead on the host computer. Configurable, network dependent parameters are required for correct decoding: - **setNumClasses** - number of YOLO classes - **setCoordinateSize** - size of coordinate - **setAnchors** - yolo anchors - **setAnchorMasks** - anchorMasks26, anchorMasks13 (anchorMasks52 - additionally for full YOLOv4) - **setIouThreshold** - intersection over union threshold - **setConfidenceThreshold** - confidence threshold above which objects are detected **By default, Tiny YOLOv4 is used**. You can add :code:`yolo3` as a CMD argument to use Tiny YOLOv3. Demo #### .. raw:: html
Setup ##### .. include:: /includes/install_from_pypi.rst .. include:: /includes/install_req.rst Source code ########### .. tabs:: .. tab:: Python Also `available on GitHub `__ .. literalinclude:: ../../../../examples/Yolo/tiny_yolo.py :language: python :linenos: .. tab:: C++ Also `available on GitHub `__ .. literalinclude:: ../../../../depthai-core/examples/Yolo/tiny_yolo.cpp :language: cpp :linenos: .. include:: /includes/footer-short.rst