File size: 1,776 Bytes
ce10c4b
 
b813e94
 
 
 
 
 
 
 
 
 
ce10c4b
b813e94
 
 
 
 
 
 
 
 
 
f483405
b813e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96abcfb
b813e94
 
 
 
96abcfb
b813e94
ccca0c1
 
 
 
c9f631e
ccca0c1
b813e94
 
 
 
 
8b933d6
efae93e
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
license: mit
task_categories:
- text-classification
- text-generation
language:
- en
tags:
- code
pretty_name: '*'
size_categories:
- 0.001M<n<0.0011M
---
# Modified Coco Dataset Files

# Required dependencies 

```
OpenCV (cv2):

pip install opencv-python
```

# img_data.psv

Extract of the coco dataset containing the following labels: ```["airplane", "backpack", "cell phone", "handbag", "suitcase", "knife", "laptop", "car"]```

```
Structured as follows:

| Field           | Description                                                                                         |
| --------------- | --------------------------------------------------------------------------------------------------- |
| file_name       | Name of image file (.png)                                                                           |
| height          | Image height prior to padding                                                                       |
| width           | Image width prior to padding                                                                        |
| annotations     | Array of boundary box array, label pairs. Bbox arrays are of the form [x_min, y_min, width, height] |

1.09k rows
```

# /data (folder)

This directory contains a selection of zero-padded COCO images that correspond to img_data.parquet.


# display_boundary.py

Mini gui for viewing images with their boundary boxes, don't need to pay attention to how it works, just do the following:

Ensure you're in the same working directory as display_boundary.py
```
cd mini_coco_dataset
```

```
python display_boundary.py
```

- It takes an image name as input (x.png), to find image names look in the data folder.

If you have any questions or issues, feel free to keep them to yourself.