object-detection-metrics
object-detection-metrics copied to clipboard
Python code for analysing object detection metrics
When I am running the evaluation I am getting assertion error iou >= 0. What should be checked?
This PR fixes the issue https://github.com/alexhock/object-detection-metrics/issues/1 Please merge!
First, thanks for this nice package. Current code in `match_preds_to_targets` returns a `pd.Series` instead of a `pd.DataFrame` at lines 60-61. https://github.com/alexhock/object-detection-metrics/blob/main/objdetecteval/metrics/image_metrics.py#L60-L61 The code needs to be changed to this ```...