├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── annotations └── annotations.csv ├── config.py ├── demo.gif ├── icon.gif ├── main.py ├── requirements.txt ├── snapshots ├── README.md ├── keras │ └── README └── tensorflow │ └── readme └── tf_config.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/README.md -------------------------------------------------------------------------------- /annotations/annotations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/annotations/annotations.csv -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/config.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/demo.gif -------------------------------------------------------------------------------- /icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/icon.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | h5py==2.8.0rc1 2 | keras-retinanet==0.3.1 -------------------------------------------------------------------------------- /snapshots/README.md: -------------------------------------------------------------------------------- 1 | Save the pretrained weights here. 2 | -------------------------------------------------------------------------------- /snapshots/keras/README: -------------------------------------------------------------------------------- 1 | add keras models here 2 | -------------------------------------------------------------------------------- /snapshots/tensorflow/readme: -------------------------------------------------------------------------------- 1 | add tensorflow models here 2 | -------------------------------------------------------------------------------- /tf_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajmavani/semi-auto-image-annotation-tool/HEAD/tf_config.py --------------------------------------------------------------------------------