decode_centernet
CenterNet decoder.
This layer decodes the CenterNet output into bounding boxes.
Parameters
- keep_top_k : Integer, how many of the top-score bounding boxes to output (The default is 300)
- do_nms : Boolean, whether run or not to run NMS on the detected bounding boxes (The default is true)
- nms_thresh : Float, threshold of jaccard overlap for NMS (The default is 0.5)
- conf_thresh : Float, minimum confidence score to be detected (The default is 0.3)
- clips : Boolean, if set true, clips the detected box into the image.