gitextract_jmgtmxdc/ ├── LICENSE ├── README.md ├── Release Notes 0.8.12.md ├── data/ │ ├── YOLO11n-model-yaml/ │ │ ├── coco8.yaml │ │ └── download_YOLO_models.txt │ └── download_SAM_models.txt ├── requirements.txt ├── setup.py └── src/ └── digitalsreeni_image_annotator/ ├── __init__.py ├── annotation_statistics.py ├── annotation_utils.py ├── annotator_window.py ├── coco_json_combiner.py ├── constants.py ├── dataset_splitter.py ├── default_stylesheet.py ├── dicom_converter.py ├── export_formats.py ├── help_window.py ├── image_augmenter.py ├── image_label.py ├── image_patcher.py ├── import_formats.py ├── main.py ├── project_details.py ├── project_search.py ├── sam_utils.py ├── slice_registration.py ├── snake_game.py ├── soft_dark_stylesheet.py ├── stack_interpolator.py ├── stack_to_slices.py ├── utils.py └── yolo_trainer.py