Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,7 @@ If everything goes smoothly, the model will output a text similar to "<loc[value
|
|
32 |
```python
|
33 |
import re
|
34 |
|
35 |
-
def
|
36 |
loc_values_str = [bbox.strip() for bbox in bbox_text.split(";")]
|
37 |
|
38 |
converted_bboxes = []
|
|
|
32 |
```python
|
33 |
import re
|
34 |
|
35 |
+
def post_process(bbox_text, image_width, image_height):
|
36 |
loc_values_str = [bbox.strip() for bbox in bbox_text.split(";")]
|
37 |
|
38 |
converted_bboxes = []
|