|
@@ -14,6 +14,8 @@ train_data = Dataset(uuids=annot.train_uuids, annotations=annot)
|
|
|
test_data = Dataset(uuids=annot.test_uuids, annotations=annot)
|
|
|
```
|
|
|
|
|
|
+## Working with part and bounding box annotations
|
|
|
+
|
|
|
In order to enable the [`PartMixing`](mixins/parts.py) functionalities pass the appropriate arguments to the initializer:
|
|
|
|
|
|
```python
|
|
@@ -34,3 +36,9 @@ data = Dataset(
|
|
|
```
|
|
|
|
|
|
Information about all possible [`PartMixing`](mixins/parts.py) functionalities can be found [here](mixins).
|
|
|
+
|
|
|
+All of the used part and bounding box functionalities can be manually used with the help of the [`utils`](utils.py) module.
|
|
|
+
|
|
|
+## `utils` module
|
|
|
+
|
|
|
+TBD (see [main page](../../) for more information for now)
|