tyomj / product_detection

Working with scale: 2nd place solution to Product Detection in Densely Packed Scenes
Apache License 2.0
48 stars 9 forks source link

Asking question: Is counting available. #3

Closed Nhatcao99 closed 3 years ago

Nhatcao99 commented 3 years ago

I haven't run the code yet but as mentioned in the paper, the method perform quite well with counting also. I want to know if counting result has also available in the code yet?

tyomj commented 3 years ago

@Nhatcao99 Despite count is not a target metric for the challenge, one may also get this information by simply calculating the number of bounding boxes (with the score above some threshold, that you can empirically tune on the test data) model outputs for each image.

Nhatcao99 commented 3 years ago

@Nhatcao99 Despite count is not a target metric for the challenge, one may also get this information by simply calculating the number of bounding boxes (with the score above some threshold, that you can empirically tune on the test data) model outputs for each image.

Thank you