Skip to content

Commit 8c6e8bc

Browse files
authored
Merge pull request #392 from Labelbox/develop
Merging develop to master, inclusion of tiled imagery annotation type
2 parents 9edfb48 + 976528c commit 8c6e8bc

File tree

16 files changed

+1525
-403
lines changed

16 files changed

+1525
-403
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
repos:
2+
- repo: https://github.com/google/yapf
3+
rev: v0.31.0
4+
hooks:
5+
- id: yapf
6+
name: "yapf"
7+
args: [-i, --style, google]

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Changelog
2+
# Version 3.12.0 (2022-01-13)
3+
## Added
4+
* Tiled Imagery annotation type
5+
- A set of classes that support Tiled Image assets
6+
- New demo notebook can be found here: examples/annotation_types/tiled_imagery_basics.ipynb
7+
- Updated tiled image mal can be found here: examples/model_assisted_labeling/tiled_imagery_mal.ipynb
8+
* Support transformations from one EPSG to another with `EPSGTransformer` class
9+
- Supports EPSG to Pixel space transformations
10+
211
# Version 3.11.1 (2022-01-10)
312
## Fix
413
* Make `TypedArray` class compatible with `numpy` versions `>= 1.22.0`

examples/annotation_types/tiled_imagery_basics.ipynb

Lines changed: 429 additions & 0 deletions
Large diffs are not rendered by default.

examples/assets/ti_basics.png

2.45 MB
Loading

examples/model_assisted_labeling/tiled_imagery_mal.ipynb

Lines changed: 91 additions & 369 deletions
Large diffs are not rendered by default.

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.11.1"
2+
__version__ = "3.12.0"
33

44
from labelbox.schema.project import Project
55
from labelbox.client import Client

0 commit comments

Comments
 (0)