├── .DS_Store ├── .idea ├── encodings.xml ├── keras-yolo3-master.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── 1.py ├── 3.py ├── 4.py ├── LICENSE ├── README.md ├── convert.py ├── font ├── .DS_Store └── font.ttf ├── kmeans.py ├── logs ├── .DS_Store └── 000 │ └── .DS_Store ├── model_data ├── .DS_Store ├── 1.png ├── 2.png ├── 3.png ├── label.txt ├── my_anchors.txt └── my_classes.txt ├── result └── result.csv ├── sample ├── .DS_Store ├── 0fbf0dd31f2c1747f245e12c6486612c.jpeg └── cctvnew3.jpg ├── train.py ├── xml_to_data.py ├── yolo.py ├── yolo3 ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── model.cpython-36.pyc │ ├── model.cpython-37.pyc │ ├── utils.cpython-36.pyc │ └── utils.cpython-37.pyc ├── model.py └── utils.py └── yolo_images.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzzzzZXxxX/yolo3_keras_Logo_Detection/2e6a23b0fa2c06afdf94689733c84b46432fe5c7/.DS_Store -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/keras-yolo3-master.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 46 | 47 | 48 | 49 | ,39 50 | 0 51 | val_split 52 | yolo 53 | 54 | 55 | 56 | 78 | 79 | 80 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 |