├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ └── config.cpython-36.pyc ├── config.py ├── datasets ├── __pycache__ │ ├── Data_Augmentation.cpython-36.pyc │ ├── augmentation.cpython-36.pyc │ ├── datasets.cpython-36.pyc │ └── utils.cpython-36.pyc ├── augmentation.py ├── datasets.py └── utils.py ├── demo.py ├── eval.py ├── img_demo.py ├── module ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── layers.cpython-36.pyc │ ├── model.cpython-36.pyc │ └── util.cpython-36.pyc ├── layers.py ├── model.py └── util.py ├── output ├── P1478_20.png └── P2082_2.png ├── train.py └── utils ├── Kmeans.py ├── __pycache__ └── utils.cpython-36.pyc ├── utils.py └── yolo_anchors.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/config.py -------------------------------------------------------------------------------- /datasets/__pycache__/Data_Augmentation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/__pycache__/Data_Augmentation.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/augmentation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/__pycache__/augmentation.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/datasets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/__pycache__/datasets.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/augmentation.py -------------------------------------------------------------------------------- /datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/datasets.py -------------------------------------------------------------------------------- /datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/datasets/utils.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/demo.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/eval.py -------------------------------------------------------------------------------- /img_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/img_demo.py -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /module/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /module/__pycache__/layers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/__pycache__/layers.cpython-36.pyc -------------------------------------------------------------------------------- /module/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /module/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /module/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/layers.py -------------------------------------------------------------------------------- /module/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/model.py -------------------------------------------------------------------------------- /module/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/module/util.py -------------------------------------------------------------------------------- /output/P1478_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/output/P1478_20.png -------------------------------------------------------------------------------- /output/P2082_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/output/P2082_2.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/train.py -------------------------------------------------------------------------------- /utils/Kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/utils/Kmeans.py -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baristahell/poly-YOLOv3/HEAD/utils/yolo_anchors.txt --------------------------------------------------------------------------------