NetInfo

Function

Stores properties of the entire YOLOv3 network.

Structure Definition

struct NetInfo {
    int anchorDim;
    int classNum;
    int bboxDim;
    int netWidth;
    int netHeight;
    std::vector<OutputLayer> outputLayers;
};

Parameter Description

Parameter

Description

anchorDim

Number of prior boxes.

classNum

Number of classes that can be predicted by a model.

bboxDim

Dimension of the object frame. 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).