.editorconfig
.git_archival.txt
.gitattributes
.gitignore
.pre-commit-config.yaml
CHANGELOG.md
CONTRIBUTING.md
LICENSE
README.md
git-conventional-commits.json
git-conventional-commits.json.license
pyproject.toml
.github/workflows/build-test-publish.yml
.github/workflows/docs.yml
.github/workflows/lint.yml
LICENSES/.license_header.txt
LICENSES/Apache-2.0.txt
LICENSES/CC0-1.0.txt
docs/Makefile
docs/make.bat
docs/source/conf.py
docs/source/howto.rst
docs/source/index.rst
docs/source/intro.rst
docs/source/_static/github-logo.svg
docs/source/howtos/1 Validating Annotation Files.rst
docs/source/howtos/2 Loading Annotation Files.rst
docs/source/howtos/3 Saving Annotation Files.rst
docs/source/howtos/4 Filtering Scenes.rst
raillabel/__init__.py
raillabel/exceptions.py
raillabel.egg-info/PKG-INFO
raillabel.egg-info/SOURCES.txt
raillabel.egg-info/dependency_links.txt
raillabel.egg-info/not-zip-safe
raillabel.egg-info/requires.txt
raillabel.egg-info/top_level.txt
raillabel/_util/__init__.py
raillabel/_util/_attribute_type.py
raillabel/_util/_clean_dict.py
raillabel/_util/_warning.py
raillabel/filter/filter.py
raillabel/filter/_filter_classes/__init__.py
raillabel/filter/_filter_classes/_filter_abc.py
raillabel/filter/_filter_classes/_filter_annotation_ids.py
raillabel/filter/_filter_classes/_filter_annotation_types.py
raillabel/filter/_filter_classes/_filter_attributes.py
raillabel/filter/_filter_classes/_filter_end.py
raillabel/filter/_filter_classes/_filter_frames.py
raillabel/filter/_filter_classes/_filter_object_ids.py
raillabel/filter/_filter_classes/_filter_object_types.py
raillabel/filter/_filter_classes/_filter_sensors.py
raillabel/filter/_filter_classes/_filter_start.py
raillabel/format/__init__.py
raillabel/format/raillabel/__init__.py
raillabel/format/raillabel/_object_annotation.py
raillabel/format/raillabel/bbox.py
raillabel/format/raillabel/cuboid.py
raillabel/format/raillabel/element_data_pointer.py
raillabel/format/raillabel/frame.py
raillabel/format/raillabel/frame_interval.py
raillabel/format/raillabel/intrinsics_pinhole.py
raillabel/format/raillabel/intrinsics_radar.py
raillabel/format/raillabel/metadata.py
raillabel/format/raillabel/num.py
raillabel/format/raillabel/object.py
raillabel/format/raillabel/point2d.py
raillabel/format/raillabel/point3d.py
raillabel/format/raillabel/poly2d.py
raillabel/format/raillabel/poly3d.py
raillabel/format/raillabel/quaternion.py
raillabel/format/raillabel/scene.py
raillabel/format/raillabel/seg3d.py
raillabel/format/raillabel/sensor.py
raillabel/format/raillabel/sensor_reference.py
raillabel/format/raillabel/size2d.py
raillabel/format/raillabel/size3d.py
raillabel/format/raillabel/transform.py
raillabel/format/understand_ai/__init__.py
raillabel/format/understand_ai/_annotation.py
raillabel/format/understand_ai/_translation.py
raillabel/format/understand_ai/bounding_box_2d.py
raillabel/format/understand_ai/bounding_box_3d.py
raillabel/format/understand_ai/coordinate_system.py
raillabel/format/understand_ai/frame.py
raillabel/format/understand_ai/metadata.py
raillabel/format/understand_ai/point_3d.py
raillabel/format/understand_ai/polygon_2d.py
raillabel/format/understand_ai/polyline_2d.py
raillabel/format/understand_ai/quaternion.py
raillabel/format/understand_ai/scene.py
raillabel/format/understand_ai/segmentation_3d.py
raillabel/format/understand_ai/sensor_reference.py
raillabel/format/understand_ai/size_3d.py
raillabel/load_/__init__.py
raillabel/load_/load.py
raillabel/load_/loader_classes/__init__.py
raillabel/load_/loader_classes/_loader_abc.py
raillabel/load_/loader_classes/loader_raillabel.py
raillabel/load_/loader_classes/loader_understand_ai.py
raillabel/load_/loader_classes/translation.json
raillabel/load_/loader_classes/translation.json.license
raillabel/save/save.py
raillabel/stats/__init__.py
raillabel/stats/generate_timespan.py
raillabel/validate/validate.py
raillabel/validate/schemas/raillabel_schema.json
raillabel/validate/schemas/raillabel_schema.json.license
raillabel/validate/schemas/understand_ai_t4_schema.json
raillabel/validate/schemas/understand_ai_t4_schema.json.license
tests/conftest.py
tests/master_test.py
tests/__test_assets__/metaschema.json
tests/__test_assets__/metaschema.json.license
tests/__test_assets__/openlabel_v1_schema.json
tests/__test_assets__/openlabel_v1_schema.json.license
tests/__test_assets__/openlabel_v1_short.json5
tests/__test_assets__/openlabel_v1_short.json5.license
tests/__test_assets__/understand_ai_real_life.json
tests/__test_assets__/understand_ai_real_life.json.license
tests/__test_assets__/understand_ai_t4_short.json
tests/__test_assets__/understand_ai_t4_short.json.license
tests/test_raillabel/__init__.py
tests/test_raillabel/_util/test_clean_dict.py
tests/test_raillabel/_util/test_warning.py
tests/test_raillabel/filter/test_filter.py
tests/test_raillabel/format/__init__.py
tests/test_raillabel/format/raillabel/__init__.py
tests/test_raillabel/format/raillabel/conftest.py
tests/test_raillabel/format/raillabel/test_attributes.py
tests/test_raillabel/format/raillabel/test_bbox.py
tests/test_raillabel/format/raillabel/test_cuboid.py
tests/test_raillabel/format/raillabel/test_element_data_pointer.py
tests/test_raillabel/format/raillabel/test_frame.py
tests/test_raillabel/format/raillabel/test_frame_interval.py
tests/test_raillabel/format/raillabel/test_intrinsics_pinhole.py
tests/test_raillabel/format/raillabel/test_intrinsics_radar.py
tests/test_raillabel/format/raillabel/test_metadata.py
tests/test_raillabel/format/raillabel/test_num.py
tests/test_raillabel/format/raillabel/test_object.py
tests/test_raillabel/format/raillabel/test_object_annotation.py
tests/test_raillabel/format/raillabel/test_object_data.py
tests/test_raillabel/format/raillabel/test_point2d.py
tests/test_raillabel/format/raillabel/test_point3d.py
tests/test_raillabel/format/raillabel/test_poly2d.py
tests/test_raillabel/format/raillabel/test_poly3d.py
tests/test_raillabel/format/raillabel/test_quaternion.py
tests/test_raillabel/format/raillabel/test_scene.py
tests/test_raillabel/format/raillabel/test_seg3d.py
tests/test_raillabel/format/raillabel/test_sensor.py
tests/test_raillabel/format/raillabel/test_sensor_reference.py
tests/test_raillabel/format/raillabel/test_size2d.py
tests/test_raillabel/format/raillabel/test_size3d.py
tests/test_raillabel/format/raillabel/test_transform.py
tests/test_raillabel/format/understand_ai/conftest.py
tests/test_raillabel/format/understand_ai/test_uai_attributes.py
tests/test_raillabel/format/understand_ai/test_uai_bounding_box_2d.py
tests/test_raillabel/format/understand_ai/test_uai_bounding_box_3d.py
tests/test_raillabel/format/understand_ai/test_uai_coordinate_system.py
tests/test_raillabel/format/understand_ai/test_uai_frame.py
tests/test_raillabel/format/understand_ai/test_uai_metadata.py
tests/test_raillabel/format/understand_ai/test_uai_point_3d.py
tests/test_raillabel/format/understand_ai/test_uai_polygon_2d.py
tests/test_raillabel/format/understand_ai/test_uai_polyline_2d.py
tests/test_raillabel/format/understand_ai/test_uai_quaternion.py
tests/test_raillabel/format/understand_ai/test_uai_scene.py
tests/test_raillabel/format/understand_ai/test_uai_segmentation_3d.py
tests/test_raillabel/format/understand_ai/test_uai_sensor_reference.py
tests/test_raillabel/format/understand_ai/test_uai_size_3d.py
tests/test_raillabel/load_/test_load.py
tests/test_raillabel/load_/loader_classes/test_loader_raillabel.py
tests/test_raillabel/load_/loader_classes/test_loader_understand_ai.py
tests/test_raillabel/save/test_save.py
tests/test_raillabel/stats/test_generate_timespan.py
tests/test_raillabel/validate/test_validate.py
tests/test_raillabel/validate/schemas/test_raillabel_v2_schema.py
tests/test_raillabel/validate/schemas/test_understand_ai_t4_schema.py