Skip to content

Commit 1ba3c5c

Browse files
committed
Update README.md
1 parent f89904e commit 1ba3c5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Non-maxima suppression/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Object detection with Non-maxima suppression (NMS)
22

3-
Testing a custom object detector with NMS (used HOG to extract features from the images and a linear SVM to classify them).
3+
> Testing a custom object detector with NMS (used HOG to extract features from the images and a linear SVM to classify them).
44
5-
### NMS is used to reduce overlapping bounding boxes to only a single bounding box, thus representing the true detection of the object. Having overlapping boxes is not exactly practical and ideal, especially if we need to count the number of objects in an image.
5+
## NMS is used to reduce overlapping bounding boxes to only a single bounding box, thus representing the true detection of the object. Having overlapping boxes is not exactly practical and ideal, especially if we need to count the number of objects in an image.
66

77
Without NMS | With NMS
88
:-------------------------:|:-------------------------:
9-
![Without](mylib/utils/without.png?raw=true "Without") | ![With](mylib/misc/with.png?raw=true "With")
9+
![Without](mylib/utils/without.png?raw=true "Without") | ![With](mylib/utils/with.png?raw=true "With")
1010

1111
---
1212

0 commit comments

Comments
 (0)