{
    "nms_scores_th": 0.2,               // Score threshold - all the bounding boxes with lower confidence score will be filtered
    "max_proposals_per_class": 100,     // Maximum number of proposals per class
    "centers_scale_factor": 4,          // The default scaling factor for the centers predictions
    "bbox_dimensions_scale_factor": 5,  // The default scaling factor for the the h/w predictions
    "classes": 80,                      // Overall number of classes (including background)
    "background_removal": false,        // Whether to remove the background channel
    "background_removal_index": 0,      // The index of the background channel
    "input_division_factor": 4,         // Post-processing is performed on 1/input_division_factor of the bboxes at a time
    "bbox_decoders": [
        {
	    "name": "bbox_decoder_conv29conv27",    // Name of BBOX decoder to use (use any name you want)
	    "reg_layer_h": "conv29",                // Corresponding height bbox encoding predictor layer from translated .hn file
	    "reg_layer_w": "conv27",                // Corresponding width bbox encoding predictor layer from translated .hn file
	    "cls_layer": "ew_add1"                  // Corresponding class predictor layer from translated .hn file (inside the .har, or using ``hailo visualizer`` tool)
        }
    ]
}
