Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f7ab202
Add support for CVAT annotation format
horatiualmasan Mar 6, 2025
ed71ac3
format
horatiualmasan Mar 6, 2025
e120a76
update
horatiualmasan Mar 6, 2025
87f0d12
format
horatiualmasan Mar 6, 2025
7db1f8f
remove sequence
horatiualmasan Mar 6, 2025
43a0ecf
fix type check error
horatiualmasan Mar 6, 2025
66d86a7
keep order of attributes for python 3.7
horatiualmasan Mar 6, 2025
63e78be
update xml compare
horatiualmasan Mar 6, 2025
63fbe4a
clean up
horatiualmasan Mar 6, 2025
7879a59
no nned for OrderedDict anymore as the xml comparison changed
horatiualmasan Mar 7, 2025
2c496c3
Update error message
horatiualmasan Mar 7, 2025
8a2ead0
use Pydantic XML
horatiualmasan Mar 11, 2025
cff206b
Merge branch 'main' of https://github.com/lightly-ai/labelformat into…
horatiualmasan Mar 11, 2025
c9d73e3
add pydantic-xml to project.toml
horatiualmasan Mar 11, 2025
1bd8984
update poetry.lock file
horatiualmasan Mar 11, 2025
18a4fea
update
horatiualmasan Mar 11, 2025
95f6eb2
remove unused "type: ignore" comment
horatiualmasan Mar 11, 2025
206771d
update
horatiualmasan Mar 11, 2025
d4803c8
update after review
horatiualmasan Mar 11, 2025
ec9740c
remove test as it will produce mypy error
horatiualmasan Mar 11, 2025
14c81d7
update type of output_annotation_scope parameter
horatiualmasan Mar 12, 2025
a74d7a0
fix test and xml compare function
horatiualmasan Mar 12, 2025
efe6f8a
remove default value from output-annotation-scope cli argument
horatiualmasan Mar 12, 2025
561aaba
add default value for output_annotation_scope
horatiualmasan Mar 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
167 changes: 166 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ python = ">=3.8"
tqdm = "*"
pyyaml = "*"
pillow = "*"
pydantic-xml = "*"

[tool.poetry.group.dev.dependencies]
mypy = "*"
Expand Down
3 changes: 3 additions & 0 deletions src/labelformat/formats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
COCOObjectDetectionInput,
COCOObjectDetectionOutput,
)
from labelformat.formats.cvat import CVATObjectDetectionInput, CVATObjectDetectionOutput
from labelformat.formats.kitti import (
KittiObjectDetectionInput,
KittiObjectDetectionOutput,
Expand Down Expand Up @@ -53,6 +54,8 @@
"COCOInstanceSegmentationOutput",
"COCOObjectDetectionInput",
"COCOObjectDetectionOutput",
"CVATObjectDetectionInput",
"CVATObjectDetectionOutput",
"KittiObjectDetectionInput",
"KittiObjectDetectionOutput",
"LabelboxObjectDetectionInput",
Expand Down
Loading