├── .gitignore ├── README.md ├── backend ├── .ipynb_checkpoints │ └── segment_onnx-checkpoint.ipynb ├── __pycache__ │ ├── app.cpython-38.pyc │ ├── run_onnx_inference.cpython-38.pyc │ └── run_torch_inference.cpython-38.pyc ├── app.py ├── convert_pytorch_to_onnx.py ├── images │ ├── groceries.jpg │ ├── logo.jpg │ ├── test.png │ └── truck.jpg ├── requirements.txt ├── run_app.sh ├── run_onnx_inference.py ├── run_torch_inference.py ├── segment.ipynb ├── segment_onnx.ipynb └── test.py ├── frontend ├── annotation-tool │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.jpeg │ │ ├── components │ │ │ └── HelloWorld.vue │ │ └── main.js │ └── vue.config.js └── install_node.sh ├── package.json ├── run_project.sh └── vis_imgs ├── annotation.gif └── preview.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.pth 2 | *.onnx 3 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/README.md -------------------------------------------------------------------------------- /backend/.ipynb_checkpoints/segment_onnx-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/.ipynb_checkpoints/segment_onnx-checkpoint.ipynb -------------------------------------------------------------------------------- /backend/__pycache__/app.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/__pycache__/app.cpython-38.pyc -------------------------------------------------------------------------------- /backend/__pycache__/run_onnx_inference.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/__pycache__/run_onnx_inference.cpython-38.pyc -------------------------------------------------------------------------------- /backend/__pycache__/run_torch_inference.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/__pycache__/run_torch_inference.cpython-38.pyc -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/convert_pytorch_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/convert_pytorch_to_onnx.py -------------------------------------------------------------------------------- /backend/images/groceries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/images/groceries.jpg -------------------------------------------------------------------------------- /backend/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/images/logo.jpg -------------------------------------------------------------------------------- /backend/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/images/test.png -------------------------------------------------------------------------------- /backend/images/truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/images/truck.jpg -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/run_app.sh: -------------------------------------------------------------------------------- 1 | 2 | #!/bin/bash 3 | export FLASK_APP=app.py 4 | flask run --port=5000 5 | -------------------------------------------------------------------------------- /backend/run_onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/run_onnx_inference.py -------------------------------------------------------------------------------- /backend/run_torch_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/run_torch_inference.py -------------------------------------------------------------------------------- /backend/segment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/segment.ipynb -------------------------------------------------------------------------------- /backend/segment_onnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/segment_onnx.ipynb -------------------------------------------------------------------------------- /backend/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/backend/test.py -------------------------------------------------------------------------------- /frontend/annotation-tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/.gitignore -------------------------------------------------------------------------------- /frontend/annotation-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/README.md -------------------------------------------------------------------------------- /frontend/annotation-tool/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/babel.config.js -------------------------------------------------------------------------------- /frontend/annotation-tool/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/jsconfig.json -------------------------------------------------------------------------------- /frontend/annotation-tool/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/package-lock.json -------------------------------------------------------------------------------- /frontend/annotation-tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/package.json -------------------------------------------------------------------------------- /frontend/annotation-tool/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/public/favicon.ico -------------------------------------------------------------------------------- /frontend/annotation-tool/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/public/index.html -------------------------------------------------------------------------------- /frontend/annotation-tool/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/src/App.vue -------------------------------------------------------------------------------- /frontend/annotation-tool/src/assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/src/assets/logo.jpeg -------------------------------------------------------------------------------- /frontend/annotation-tool/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /frontend/annotation-tool/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/src/main.js -------------------------------------------------------------------------------- /frontend/annotation-tool/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/annotation-tool/vue.config.js -------------------------------------------------------------------------------- /frontend/install_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/frontend/install_node.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/package.json -------------------------------------------------------------------------------- /run_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/run_project.sh -------------------------------------------------------------------------------- /vis_imgs/annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/vis_imgs/annotation.gif -------------------------------------------------------------------------------- /vis_imgs/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asad-Ismail/InteractiveAnnotation/HEAD/vis_imgs/preview.gif --------------------------------------------------------------------------------