OutputLayer

Function

Stores information about each output pool of YOLOv3, including the number of width and height grids and the size of the prior box.

Structure Definition

struct OutputLayer {
    int layerIdx;
    int width;
    int height;
    float anchors[6];
};

Parameter Description

Parameter

Description

layerIdx

Index of each output pool of YOLOv3.

width

Number of width grids of the prior box.

height

Number of height grids of the prior box.

anchors

Size of the prior box.