├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples ├── AIpreannotator-demo.gif ├── demo_annotation_.mp4 ├── orange-apples-test.gif ├── visiofirm-logo.gif └── visiofirmv1.gif ├── pyproject.toml ├── requirements.txt ├── run.py ├── setup.py └── visiofirm ├── __init__.py ├── auth_client.py ├── blindtrust.py ├── config.py ├── create_app.py ├── errortracker.py ├── exporter.py ├── imagedownloader.py ├── imageplot.py ├── imageremover.py ├── models ├── __init__.py ├── project.py └── user.py ├── preannotator.py ├── projects.py ├── routes ├── __init__.py ├── annotation.py ├── auth.py ├── dashboard.py └── importer.py ├── security.py ├── static ├── css │ ├── setup.css │ └── styles.css ├── img │ ├── VisioFirm_logo.png │ ├── bb_logo.gif │ ├── classif_logo.gif │ ├── coco_logo.png │ ├── csv_logo.png │ ├── interpolate_logo.gif │ ├── logos │ │ ├── delete-btn.svg │ │ ├── duplicate-btn.svg │ │ ├── grid-btn.svg │ │ ├── magic-mode.svg │ │ ├── next-image-btn.svg │ │ ├── polygon-mode.svg │ │ ├── prev-image-btn.svg │ │ ├── rect-mode.svg │ │ ├── reset-view.svg │ │ ├── save-btn.svg │ │ ├── select-mode.svg │ │ ├── undo-btn.svg │ │ ├── zoom-in-btn.svg │ │ └── zoom-out-btn.svg │ ├── mask_logo.gif │ ├── mask_video.gif │ ├── obb_logo.gif │ ├── opencv_logo.png │ ├── pascal_voc_logo.png │ ├── sam2_logo.png │ ├── seg_logo.gif │ ├── video_det_logo.gif │ ├── video_seg_logo.gif │ └── yolo_logo.png └── js │ ├── annotationCore.js │ ├── annotationDrawing.js │ ├── annotationInteraction.js │ ├── chunkedUpload.js │ ├── globals.js │ ├── imageHandling.js │ ├── importHandler.js │ ├── jslib │ └── plotly-2.35.2.min.js │ ├── keyboardShortcuts.js │ ├── main.js │ ├── main_video.js │ ├── sam.js │ ├── samWorker.js │ ├── saveHandling.js │ ├── sharedState.js │ ├── shortcutsHelp.js │ ├── spinnerLoader.js │ ├── storageHandling.js │ ├── timeline_helpers.js │ ├── toolControls.js │ ├── videoAnnotationInteraction.js │ ├── video_globals.js │ ├── video_utils.js │ └── viewManagement.js ├── templates ├── base.html ├── dashboard.html ├── image_annotation.html ├── login.html ├── profile.html ├── register.html ├── reset.html ├── settings.html └── video_annotation.html ├── tracker.py └── utils ├── GroundingDinoConfigs ├── GroundingDINO_SwinB_cfg.py ├── GroundingDINO_SwinT_OGC.py └── __init__.py ├── VFPreAnnotator.py ├── __init__.py ├── downloader.py ├── export_utils.py ├── file_utils.py ├── video_export_utils.py └── videoutils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/README.md -------------------------------------------------------------------------------- /examples/AIpreannotator-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/examples/AIpreannotator-demo.gif -------------------------------------------------------------------------------- /examples/demo_annotation_.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/examples/demo_annotation_.mp4 -------------------------------------------------------------------------------- /examples/orange-apples-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/examples/orange-apples-test.gif -------------------------------------------------------------------------------- /examples/visiofirm-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/examples/visiofirm-logo.gif -------------------------------------------------------------------------------- /examples/visiofirmv1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/examples/visiofirmv1.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/setup.py -------------------------------------------------------------------------------- /visiofirm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/__init__.py -------------------------------------------------------------------------------- /visiofirm/auth_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/auth_client.py -------------------------------------------------------------------------------- /visiofirm/blindtrust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/blindtrust.py -------------------------------------------------------------------------------- /visiofirm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/config.py -------------------------------------------------------------------------------- /visiofirm/create_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/create_app.py -------------------------------------------------------------------------------- /visiofirm/errortracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/errortracker.py -------------------------------------------------------------------------------- /visiofirm/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/exporter.py -------------------------------------------------------------------------------- /visiofirm/imagedownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/imagedownloader.py -------------------------------------------------------------------------------- /visiofirm/imageplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/imageplot.py -------------------------------------------------------------------------------- /visiofirm/imageremover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/imageremover.py -------------------------------------------------------------------------------- /visiofirm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/models/__init__.py -------------------------------------------------------------------------------- /visiofirm/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/models/project.py -------------------------------------------------------------------------------- /visiofirm/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/models/user.py -------------------------------------------------------------------------------- /visiofirm/preannotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/preannotator.py -------------------------------------------------------------------------------- /visiofirm/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/projects.py -------------------------------------------------------------------------------- /visiofirm/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visiofirm/routes/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/routes/annotation.py -------------------------------------------------------------------------------- /visiofirm/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/routes/auth.py -------------------------------------------------------------------------------- /visiofirm/routes/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/routes/dashboard.py -------------------------------------------------------------------------------- /visiofirm/routes/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/routes/importer.py -------------------------------------------------------------------------------- /visiofirm/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/security.py -------------------------------------------------------------------------------- /visiofirm/static/css/setup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/css/setup.css -------------------------------------------------------------------------------- /visiofirm/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/css/styles.css -------------------------------------------------------------------------------- /visiofirm/static/img/VisioFirm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/VisioFirm_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/bb_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/bb_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/classif_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/classif_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/coco_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/coco_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/csv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/csv_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/interpolate_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/interpolate_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/logos/delete-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/delete-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/duplicate-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/duplicate-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/grid-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/grid-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/magic-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/magic-mode.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/next-image-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/next-image-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/polygon-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/polygon-mode.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/prev-image-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/prev-image-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/rect-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/rect-mode.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/reset-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/reset-view.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/save-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/save-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/select-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/select-mode.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/undo-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/undo-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/zoom-in-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/zoom-in-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/logos/zoom-out-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/logos/zoom-out-btn.svg -------------------------------------------------------------------------------- /visiofirm/static/img/mask_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/mask_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/mask_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/mask_video.gif -------------------------------------------------------------------------------- /visiofirm/static/img/obb_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/obb_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/opencv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/opencv_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/pascal_voc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/pascal_voc_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/sam2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/sam2_logo.png -------------------------------------------------------------------------------- /visiofirm/static/img/seg_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/seg_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/video_det_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/video_det_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/video_seg_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/video_seg_logo.gif -------------------------------------------------------------------------------- /visiofirm/static/img/yolo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/img/yolo_logo.png -------------------------------------------------------------------------------- /visiofirm/static/js/annotationCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/annotationCore.js -------------------------------------------------------------------------------- /visiofirm/static/js/annotationDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/annotationDrawing.js -------------------------------------------------------------------------------- /visiofirm/static/js/annotationInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/annotationInteraction.js -------------------------------------------------------------------------------- /visiofirm/static/js/chunkedUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/chunkedUpload.js -------------------------------------------------------------------------------- /visiofirm/static/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/globals.js -------------------------------------------------------------------------------- /visiofirm/static/js/imageHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/imageHandling.js -------------------------------------------------------------------------------- /visiofirm/static/js/importHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/importHandler.js -------------------------------------------------------------------------------- /visiofirm/static/js/jslib/plotly-2.35.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/jslib/plotly-2.35.2.min.js -------------------------------------------------------------------------------- /visiofirm/static/js/keyboardShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/keyboardShortcuts.js -------------------------------------------------------------------------------- /visiofirm/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/main.js -------------------------------------------------------------------------------- /visiofirm/static/js/main_video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/main_video.js -------------------------------------------------------------------------------- /visiofirm/static/js/sam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/sam.js -------------------------------------------------------------------------------- /visiofirm/static/js/samWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/samWorker.js -------------------------------------------------------------------------------- /visiofirm/static/js/saveHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/saveHandling.js -------------------------------------------------------------------------------- /visiofirm/static/js/sharedState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/sharedState.js -------------------------------------------------------------------------------- /visiofirm/static/js/shortcutsHelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/shortcutsHelp.js -------------------------------------------------------------------------------- /visiofirm/static/js/spinnerLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/spinnerLoader.js -------------------------------------------------------------------------------- /visiofirm/static/js/storageHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/storageHandling.js -------------------------------------------------------------------------------- /visiofirm/static/js/timeline_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/timeline_helpers.js -------------------------------------------------------------------------------- /visiofirm/static/js/toolControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/toolControls.js -------------------------------------------------------------------------------- /visiofirm/static/js/videoAnnotationInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/videoAnnotationInteraction.js -------------------------------------------------------------------------------- /visiofirm/static/js/video_globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/video_globals.js -------------------------------------------------------------------------------- /visiofirm/static/js/video_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/video_utils.js -------------------------------------------------------------------------------- /visiofirm/static/js/viewManagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/static/js/viewManagement.js -------------------------------------------------------------------------------- /visiofirm/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/base.html -------------------------------------------------------------------------------- /visiofirm/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/dashboard.html -------------------------------------------------------------------------------- /visiofirm/templates/image_annotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/image_annotation.html -------------------------------------------------------------------------------- /visiofirm/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/login.html -------------------------------------------------------------------------------- /visiofirm/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/profile.html -------------------------------------------------------------------------------- /visiofirm/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/register.html -------------------------------------------------------------------------------- /visiofirm/templates/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/reset.html -------------------------------------------------------------------------------- /visiofirm/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/settings.html -------------------------------------------------------------------------------- /visiofirm/templates/video_annotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/templates/video_annotation.html -------------------------------------------------------------------------------- /visiofirm/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/tracker.py -------------------------------------------------------------------------------- /visiofirm/utils/GroundingDinoConfigs/GroundingDINO_SwinB_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/GroundingDinoConfigs/GroundingDINO_SwinB_cfg.py -------------------------------------------------------------------------------- /visiofirm/utils/GroundingDinoConfigs/GroundingDINO_SwinT_OGC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/GroundingDinoConfigs/GroundingDINO_SwinT_OGC.py -------------------------------------------------------------------------------- /visiofirm/utils/GroundingDinoConfigs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visiofirm/utils/VFPreAnnotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/VFPreAnnotator.py -------------------------------------------------------------------------------- /visiofirm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/__init__.py -------------------------------------------------------------------------------- /visiofirm/utils/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/downloader.py -------------------------------------------------------------------------------- /visiofirm/utils/export_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/export_utils.py -------------------------------------------------------------------------------- /visiofirm/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/file_utils.py -------------------------------------------------------------------------------- /visiofirm/utils/video_export_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/video_export_utils.py -------------------------------------------------------------------------------- /visiofirm/utils/videoutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OschAI/VisioFirm/HEAD/visiofirm/utils/videoutils.py --------------------------------------------------------------------------------