NetInfo

Description

Stores properties of the entire YOLOv3 network.

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
struct NetInfo {
    int anchorDim;
    int classNum;
    int bboxDim;
    int netWidth;
    int netHeight;
    std::vector<OutputLayer> outputLayers;
};
struct NetInfo {
    int anchorDim;
    int classNum;
    int bboxDim;
    int netWidth;
    int netHeight;
};

Parameters

Parameter

Description

anchorDim

Number of prior boxes.

classNum

Number of classes that can be predicted by a model.

bboxDim

Dimensions of the bounding box. Generally, the value is 4.

netWidth

Width of the model input.

netHeight

Height of the model input.

outputLayers

Information about each output pool of YOLOv3 (properties of the prior box).