Skip to content

Commit eb8c931

Browse files
authored
Update README.md
1 parent 1ba3c5c commit eb8c931

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
@@ -2,7 +2,7 @@
22

33
> 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
:-------------------------:|:-------------------------:
@@ -14,9 +14,9 @@ Without NMS | With NMS
1414

1515
- We are testing a car class from the Caltech 101 dataset.
1616
- Setup your dataset paths and configurations in 'conf/cars.json' file.
17-
- Download the weights file from [**here**](https://drive.google.com/file/d/1bSJo8cU_gyzttScRskb5F45aeLu4LF3_/view?usp=sharing) and place it in 'output/cars'.
17+
- Download the weights file from [**here**](https://drive.google.com/file/d/1bSJo8cU_gyzttScRskb5F45aeLu4LF3_/view?usp=sharing) and place it in 'output/cars' folder along with model.cpickle file.
1818
- The model is also trained with 'Sceneclass13' dataset to aid in accurate class detections.
19-
- To test the trained detector (replace --image with any image from the dataset):
19+
- To test the trained detector ```(replace --image with any image from the dataset)``` :
2020

2121
```
2222
python test_model.py --conf conf/cars.json --image datasets/caltech101/101_ObjectCategories/car_side/image_0007.jpg

0 commit comments

Comments
 (0)