这是indexloc提供的服务,不要输入任何密码
Skip to content

problem with the MatchBBox function in bbox_util.cpp #443

@bluedlw

Description

@bluedlw

in the bipartite matching part, (find the most overlapped gt and cooresponding predictions),
where it looks like below:
if (it->second[j] > max_overlap) {
// If the prediction has not been matched to any ground truth,
// and the overlap is larger than maximum overlap, update.
max_idx = i;
max_gt_idx = j;
max_overlap = it->second[j];
}

should it be if(it->second[j] > overlap_threshold && it->second[j] > max_overlap)?
otherwise the max matching bboxes may have the overlap below overlap_threshlod.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions