decode_ssd
SSD decoder.
This layer decodes SSD into bounding boxes
Parameter
- keep_top_k : Integer, maximum num of detected boxes (The default is 300).
- background_label_id : Integer, label number of background (The default is 0).
- do_nms : Boolean, whether run or not to run NMS (The default is true).
- nms_thresh : Float, threshold of jaccard for NMS (The default is 0.45)
- onf_thresh : Float, threshold of confidence score to be detected (The default is 0.01)
- clips : Boolean, if set true, clips the detected box into the image.