Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,11 +38,12 @@ The bounding boxes follow these conventions:
|
|
| 38 |
|
| 39 |
### Coordinate Conversion
|
| 40 |
To convert the normalized `bbox` to pixel values for a 512x512 image:
|
|
|
|
| 41 |
Pixel_x = x * 512
|
| 42 |
Pixel_y = y * 512
|
| 43 |
Pixel_w = w * 512
|
| 44 |
Pixel_h = h * 512
|
| 45 |
-
|
| 46 |
---
|
| 47 |
|
| 48 |
## Example Entry
|
|
|
|
| 38 |
|
| 39 |
### Coordinate Conversion
|
| 40 |
To convert the normalized `bbox` to pixel values for a 512x512 image:
|
| 41 |
+
```Python
|
| 42 |
Pixel_x = x * 512
|
| 43 |
Pixel_y = y * 512
|
| 44 |
Pixel_w = w * 512
|
| 45 |
Pixel_h = h * 512
|
| 46 |
+
```
|
| 47 |
---
|
| 48 |
|
| 49 |
## Example Entry
|