Darknet/YOLO v3.0-149-gb11c9d5
Object Detection Framework
 
Loading...
Searching...
No Matches
Darknet::Output_Object Struct Reference

This is used to help keep some state between calls to functions fill_network_boxes(), get_yolo_detections(), etc. More...

#include "darknet_internal.hpp"

Collaboration diagram for Darknet::Output_Object:

Public Attributes

int i
 The index into the float output array for the given layer.
 
int layer_index
 The layer index where this was found.
 
int n
 What is "n"...the mask number?
 
int obj_index
 The object index.
 

Detailed Description

This is used to help keep some state between calls to functions fill_network_boxes(), get_yolo_detections(), etc.

We use the cache to track objects within the output array, so we don't have to walk over the entire array every time we need to find all the objects and bounding boxes.

Member Data Documentation

◆ i

int Darknet::Output_Object::i

The index into the float output array for the given layer.

◆ layer_index

int Darknet::Output_Object::layer_index

The layer index where this was found.

◆ n

int Darknet::Output_Object::n

What is "n"...the mask number?

◆ obj_index

int Darknet::Output_Object::obj_index

The object index.


The documentation for this struct was generated from the following file: