Skip to content

Commit e54c091

Browse files
authored
Add files via upload
1 parent df918d2 commit e54c091

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ OpenCV Version = 4.1.1
1414

1515
To run the code, download it and execute using the following command in terminal/command prompt:
1616

17-
python selective_search.py < input_image_path> <annotated_image_path> <strategy>
17+
python selective_search.py < input_image_path> <annotated_image_path> <strategy>
1818

1919
- input_image_path: Enter the image file name including path
2020
- annotated_image_path: Enter the annotated image file name including path
@@ -27,7 +27,7 @@ Eg: python selective_search.py ./JPEGImages/1.jpg ./Annotations/1.xml color
2727

2828
To run the code, download it and execute using the following command in terminal/command prompt:
2929

30-
python edgeboxes.py < input_image_path> <annotated_image_path>
30+
python edgeboxes.py < input_image_path> <annotated_image_path>
3131

3232
- input_image_path: Enter the image file name including path
3333
- annotated_image_path: Enter the annotated image file name including path
@@ -97,7 +97,7 @@ The steps followed in implementing the code are as follows:
9797
### Intersection over Union
9898
We evaluate the proposed bounding boxes generated by Selective Search and EdgeBoxes algorithms using Intersection over Union (IoU) metric which is defined as:
9999

100-
Intersection over Union (IoU) = Area of overlap / Area of union
100+
Intersection over Union (IoU) = Area of overlap / Area of union
101101

102102
Here, Area of overlap is the area of intersection between the ground truth box and the proposed bounding box. Area of Union is the total area encompassed by both the ground truth box and the proposed bounding box. If the ground truth box and the proposed bounding box do not overlap, then the IoU is 0.
103103

0 commit comments

Comments
 (0)