Update README.md
Browse files
README.md
CHANGED
@@ -11,6 +11,34 @@ This model to extract classes:
|
|
11 |
- table
|
12 |
- text-box
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
## Example Output
|
15 |

|
16 |
|
|
|
11 |
- table
|
12 |
- text-box
|
13 |
|
14 |
+
## Usage
|
15 |
+
|
16 |
+
### Example Code
|
17 |
+
|
18 |
+
pip install ultralytics==8.0.196 supervision==0.21.0 opencv-python==4.8.0.76
|
19 |
+
|
20 |
+
```python
|
21 |
+
from ultralytics import YOLO
|
22 |
+
import cv2
|
23 |
+
import supervision as sv
|
24 |
+
|
25 |
+
|
26 |
+
img = "sample.jpeg"
|
27 |
+
image = cv2.imread(img)
|
28 |
+
model = YOLO('news-segmentation/best.pt')
|
29 |
+
|
30 |
+
results = model(source=img, conf=0.2, iou=0.8)[0]
|
31 |
+
detections = sv.Detections.from_ultralytics(results)
|
32 |
+
bounding_box_annotator = sv.BoundingBoxAnnotator()
|
33 |
+
label_annotator = sv.LabelAnnotator()
|
34 |
+
annotated_image = bounding_box_annotator.annotate(
|
35 |
+
scene=image, detections=detections)
|
36 |
+
annotated_image = label_annotator.annotate(
|
37 |
+
scene=annotated_image, detections=detections)
|
38 |
+
|
39 |
+
sv.plot_image(annotated_image)
|
40 |
+
```
|
41 |
+
|
42 |
## Example Output
|
43 |

|
44 |
|