should it find the obj_class with the max prob? #94

Closed
opened 2020-07-27 09:40:06 +02:00 by zoom1539 · 1 comment
zoom1539 commented 2020-07-27 09:40:06 +02:00 (Migrated from github.com)

Line 118-123 in src/Yolo3Detection.cpp:

        for(int c=0; c<classes; c++) {
            if(dets[j].prob[c] >= confThreshold) {
                obj_class = c;
                prob = dets[j].prob[c];
            }
        }

should it find the obj_class with the max prob?

Line 118-123 in src/Yolo3Detection.cpp: ``` for(int c=0; c<classes; c++) { if(dets[j].prob[c] >= confThreshold) { obj_class = c; prob = dets[j].prob[c]; } } ``` should it find the obj_class with the max prob?
ceccocats commented 2020-07-27 13:50:08 +02:00 (Migrated from github.com)

Actually this is an Error, it should pick all the objects with the prob > confThreshold.
thank you for pointing this

Actually this is an Error, it should pick all the objects with the prob > confThreshold. thank you for pointing this
This repo is archived. You cannot comment on issues.
1 Participants
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: mmr/tkDNN#94