File size: 1,448 Bytes
661ec60
c06c85a
 
 
 
 
 
 
 
661ec60
c06c85a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
62
63
64
65
66
67
68
69
70
71
72
73
---
license: other
task_categories:
- image-segmentation
tags:
- cvat
- segmentation
size_categories:
- 1K<n<10K
---

# Sinon_Less - Segmentation Dataset

Instance Segmentation dataset with polygon annotations.

## Dataset Description

- **Source**: CVAT Annotation Platform
- **Format**: Segmentation
- **Total Samples**: 2535
- **Splits**: train: 1497, val: 267, test: 771

## Labels

- `Person`
- `Hard Hat`
- `No Head Protection`
- `Cleanroom Suit`
- `Splash Proof Gown`
- `No Protective Clothing`
- `Full Face Mask`
- `No Full Face Mask`

## Usage

```python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("Daniel246/cvat-sinon_less-segmentation")

# Access splits
train_data = dataset["train"]
val_data = dataset["val"]
test_data = dataset["test"]

# Example: iterate over samples
for sample in train_data:
    image = sample["image"]
    # Process annotations based on format type
```

## Dataset Structure

### Data Fields

- `image`: PIL Image
- `image_id`: Unique identifier for the image
- `width`: Image width in pixels
- `height`: Image height in pixels
- `objects`: List of segmented objects with:
  - `bbox`: Bounding box [x_center, y_center, width, height] (normalized)
  - `polygon`: List of [x, y] points (normalized)
  - `category_id`: Class index
  - `category_name`: Class name

## License

Please check the original data source for licensing information.

---
*Generated by CVAT Training System*