libavfilter/vf_dnn_detect: Use class confidence to filt boxes
Use class confidence instead of box_score to filt boxes, which is more accurate. Class confidence is obtained by multiplying class probability distribution and box_score. Signed-off-by: Wenbin Chen <wenbin.chen@intel.com> Reviewed-by: Guo Yejun <yejun.guo@intel.com>
This commit is contained in:
parent
3de38b9da5
commit
d52e8ed114
@ -236,9 +236,6 @@ static int dnn_detect_parse_yolo_output(AVFrame *frame, DNNData *output, int out
|
||||
conf = post_process_raw_data(
|
||||
detection_boxes_data[cy * cell_w + cx + 4 * cell_w * cell_h]);
|
||||
}
|
||||
if (conf < conf_threshold) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (is_NHWC) {
|
||||
x = post_process_raw_data(detection_boxes_data[0]);
|
||||
@ -257,6 +254,9 @@ static int dnn_detect_parse_yolo_output(AVFrame *frame, DNNData *output, int out
|
||||
conf = conf * post_process_raw_data(
|
||||
detection_boxes_data[cy * cell_w + cx + (label_id + 5) * cell_w * cell_h]);
|
||||
}
|
||||
if (conf < conf_threshold) {
|
||||
continue;
|
||||
}
|
||||
|
||||
bbox = av_mallocz(sizeof(*bbox));
|
||||
if (!bbox)
|
||||
|
Loading…
x
Reference in New Issue
Block a user