This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [openmodelica] | |
| name=OpenModelica Fedora $releasever Repository | |
| baseurl=https://build.openmodelica.org/rpm/fc$releasever/ | |
| enabled=1 | |
| gpgcheck=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function top = nms(boxes, overlap) | |
| % top = nms_fast(boxes, overlap) | |
| % Non-maximum suppression. (FAST VERSION) | |
| % Greedily select high-scoring detections and skip detections | |
| % that are significantly covered by a previously selected | |
| % detection. | |
| % NOTE: This is adapted from Pedro Felzenszwalb's version (nms.m), | |
| % but an inner loop has been eliminated to significantly speed it | |
| % up in the case of a large number of boxes | |
| % Tomasz Malisiewicz (tomasz@cmu.edu) |