gitextract_ghzsofy7/ ├── .claude/ │ └── CLAUDE.md ├── .git-blame-ignore-revs ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1.bug_report.yml │ │ └── config.yml │ └── workflows/ │ ├── ci.yml │ ├── cla.yml │ └── discord-notify.yml ├── .gitignore ├── .gitmodules ├── .python-version ├── CITATION.cff ├── CLA.md ├── LICENSE ├── Makefile ├── README.md ├── examples/ │ ├── bbox_detection/ │ │ ├── README.md │ │ ├── data_annotated/ │ │ │ ├── 2011_000003.json │ │ │ ├── 2011_000006.json │ │ │ └── 2011_000025.json │ │ ├── data_dataset_voc/ │ │ │ ├── Annotations/ │ │ │ │ ├── 2011_000003.xml │ │ │ │ ├── 2011_000006.xml │ │ │ │ └── 2011_000025.xml │ │ │ └── class_names.txt │ │ ├── labelme2voc.py │ │ └── labels.txt │ ├── classification/ │ │ ├── README.md │ │ ├── data_annotated/ │ │ │ ├── 0001.json │ │ │ └── 0002.json │ │ └── flags.txt │ ├── instance_segmentation/ │ │ ├── README.md │ │ ├── data_annotated/ │ │ │ ├── 2011_000003.json │ │ │ ├── 2011_000006.json │ │ │ └── 2011_000025.json │ │ ├── data_dataset_coco/ │ │ │ └── annotations.json │ │ ├── data_dataset_voc/ │ │ │ ├── SegmentationClassNpy/ │ │ │ │ ├── 2011_000003.npy │ │ │ │ ├── 2011_000006.npy │ │ │ │ └── 2011_000025.npy │ │ │ ├── SegmentationObjectNpy/ │ │ │ │ ├── 2011_000003.npy │ │ │ │ ├── 2011_000006.npy │ │ │ │ └── 2011_000025.npy │ │ │ └── class_names.txt │ │ ├── labelme2coco.py │ │ ├── labelme2voc.py │ │ └── labels.txt │ ├── primitives/ │ │ └── primitives.json │ ├── semantic_segmentation/ │ │ ├── README.md │ │ ├── data_annotated/ │ │ │ ├── 2011_000003.json │ │ │ ├── 2011_000006.json │ │ │ └── 2011_000025.json │ │ ├── data_dataset_voc/ │ │ │ ├── SegmentationClassNpy/ │ │ │ │ ├── 2011_000003.npy │ │ │ │ ├── 2011_000006.npy │ │ │ │ └── 2011_000025.npy │ │ │ └── class_names.txt │ │ └── labels.txt │ ├── tutorial/ │ │ ├── README.md │ │ ├── apc2016_obj3/ │ │ │ └── label_names.txt │ │ ├── apc2016_obj3.json │ │ ├── draw_json.py │ │ ├── draw_label_png.py │ │ ├── export_json.py │ │ └── load_label_png.py │ └── video_annotation/ │ ├── README.md │ ├── data_annotated/ │ │ ├── 00000100.json │ │ ├── 00000101.json │ │ ├── 00000102.json │ │ ├── 00000103.json │ │ └── 00000104.json │ ├── data_dataset_voc/ │ │ ├── SegmentationClass/ │ │ │ ├── 00000100.npy │ │ │ ├── 00000101.npy │ │ │ ├── 00000102.npy │ │ │ ├── 00000103.npy │ │ │ └── 00000104.npy │ │ └── class_names.txt │ └── labels.txt ├── labelme/ │ ├── __init__.py │ ├── __main__.py │ ├── _automation/ │ │ ├── __init__.py │ │ ├── _osam_session.py │ │ ├── bbox_from_text.py │ │ └── polygon_from_mask.py │ ├── _label_file.py │ ├── app.py │ ├── config/ │ │ ├── __init__.py │ │ └── default_config.yaml │ ├── shape.py │ ├── testing.py │ ├── translate/ │ │ ├── de_DE.qm │ │ ├── de_DE.ts │ │ ├── es_ES.qm │ │ ├── es_ES.ts │ │ ├── fa_IR.qm │ │ ├── fa_IR.ts │ │ ├── fr_FR.qm │ │ ├── fr_FR.ts │ │ ├── hu_HU.qm │ │ ├── hu_HU.ts │ │ ├── it_IT.qm │ │ ├── it_IT.ts │ │ ├── ja_JP.qm │ │ ├── ja_JP.ts │ │ ├── ko_KR.qm │ │ ├── ko_KR.ts │ │ ├── nl_NL.qm │ │ ├── nl_NL.ts │ │ ├── pl_PL.qm │ │ ├── pl_PL.ts │ │ ├── pt_BR.qm │ │ ├── pt_BR.ts │ │ ├── th_TH.qm │ │ ├── th_TH.ts │ │ ├── tr_TR.qm │ │ ├── tr_TR.ts │ │ ├── vi_VN.qm │ │ ├── vi_VN.ts │ │ ├── zh_CN.qm │ │ ├── zh_CN.ts │ │ ├── zh_TW.qm │ │ └── zh_TW.ts │ ├── utils/ │ │ ├── __init__.py │ │ ├── _io.py │ │ ├── image.py │ │ ├── qt.py │ │ └── shape.py │ └── widgets/ │ ├── __init__.py │ ├── _ai_assisted_annotation_widget.py │ ├── _ai_text_to_annotation_widget.py │ ├── _info_button.py │ ├── _status.py │ ├── brightness_contrast_dialog.py │ ├── canvas.py │ ├── download.py │ ├── file_dialog_preview.py │ ├── label_dialog.py │ ├── label_list_widget.py │ ├── tool_bar.py │ ├── unique_label_qlist_widget.py │ └── zoom_widget.py ├── pyproject.toml ├── tests/ │ ├── conftest.py │ ├── e2e/ │ │ ├── __init__.py │ │ ├── annotation_test.py │ │ ├── config_test.py │ │ ├── conftest.py │ │ ├── file_loading_test.py │ │ ├── navigation_test.py │ │ └── smoke_test.py │ └── unit/ │ ├── __init__.py │ ├── _label_file_test.py │ ├── config_test.py │ ├── load_image_file_test.py │ ├── shape_contains_point_test.py │ ├── shape_test.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── image_test.py │ │ ├── qt_test.py │ │ ├── shape_test.py │ │ └── util.py │ └── widgets/ │ ├── __init__.py │ ├── canvas_test.py │ ├── label_dialog_test.py │ └── label_list_widget_test.py └── tools/ └── update_translate.py