├── .idea ├── 07-keras-yolo3-fish.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── .ipynb_checkpoints ├── check_annotations-checkpoint.ipynb ├── compress_images-checkpoint.ipynb ├── generate_qualified_images-checkpoint.ipynb └── yolo_test-checkpoint.ipynb ├── README.md ├── __pycache__ └── yolo.cpython-36.pyc ├── check_annotations.ipynb ├── compress_images.ipynb ├── dataset_test.txt ├── dataset_train.txt ├── fish_1.png ├── fish_2.png ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── generateTxtFile.py ├── generate_qualified_images.ipynb ├── images_416x416 ├── 001.jpg ├── 001.xml ├── 002.jpg ├── 002.xml ├── 003.jpg ├── 003.xml ├── 004.jpg └── 004.xml ├── model_data ├── tiny_yolo_anchors.txt ├── voc_classes.txt └── yolo_anchors.txt ├── n01440764 ├── n01440764_18.JPEG ├── n01440764_36.JPEG ├── n01440764_37.JPEG └── n01440764_39.JPEG ├── saved_model └── 训练权重文件放在这里.txt ├── selected_images ├── 001.jpg ├── 001.xml ├── 002.jpg ├── 002.xml ├── 003.jpg ├── 003.xml └── 004.jpg ├── train.py ├── yolo.py ├── yolo3 ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── model.cpython-36.pyc │ └── utils.cpython-36.pyc ├── model.py └── utils.py ├── yolo_multiImages.py └── yolo_test.ipynb /.idea/07-keras-yolo3-fish.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.idea/07-keras-yolo3-fish.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.ipynb_checkpoints/check_annotations-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.ipynb_checkpoints/check_annotations-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/compress_images-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.ipynb_checkpoints/compress_images-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/generate_qualified_images-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.ipynb_checkpoints/generate_qualified_images-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/yolo_test-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/.ipynb_checkpoints/yolo_test-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/yolo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/__pycache__/yolo.cpython-36.pyc -------------------------------------------------------------------------------- /check_annotations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/check_annotations.ipynb -------------------------------------------------------------------------------- /compress_images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/compress_images.ipynb -------------------------------------------------------------------------------- /dataset_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/dataset_test.txt -------------------------------------------------------------------------------- /dataset_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/dataset_train.txt -------------------------------------------------------------------------------- /fish_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/fish_1.png -------------------------------------------------------------------------------- /fish_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/fish_2.png -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /generateTxtFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/generateTxtFile.py -------------------------------------------------------------------------------- /generate_qualified_images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/generate_qualified_images.ipynb -------------------------------------------------------------------------------- /images_416x416/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/001.jpg -------------------------------------------------------------------------------- /images_416x416/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/001.xml -------------------------------------------------------------------------------- /images_416x416/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/002.jpg -------------------------------------------------------------------------------- /images_416x416/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/002.xml -------------------------------------------------------------------------------- /images_416x416/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/003.jpg -------------------------------------------------------------------------------- /images_416x416/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/003.xml -------------------------------------------------------------------------------- /images_416x416/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/004.jpg -------------------------------------------------------------------------------- /images_416x416/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/images_416x416/004.xml -------------------------------------------------------------------------------- /model_data/tiny_yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/model_data/tiny_yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- 1 | fish 2 | human_face 3 | -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /n01440764/n01440764_18.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/n01440764/n01440764_18.JPEG -------------------------------------------------------------------------------- /n01440764/n01440764_36.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/n01440764/n01440764_36.JPEG -------------------------------------------------------------------------------- /n01440764/n01440764_37.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/n01440764/n01440764_37.JPEG -------------------------------------------------------------------------------- /n01440764/n01440764_39.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/n01440764/n01440764_39.JPEG -------------------------------------------------------------------------------- /saved_model/训练权重文件放在这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selected_images/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/001.jpg -------------------------------------------------------------------------------- /selected_images/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/001.xml -------------------------------------------------------------------------------- /selected_images/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/002.jpg -------------------------------------------------------------------------------- /selected_images/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/002.xml -------------------------------------------------------------------------------- /selected_images/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/003.jpg -------------------------------------------------------------------------------- /selected_images/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/003.xml -------------------------------------------------------------------------------- /selected_images/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/selected_images/004.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/train.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo3/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo3/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo_multiImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo_multiImages.py -------------------------------------------------------------------------------- /yolo_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiangXiangBo/yolo3_fish_detection/HEAD/yolo_test.ipynb --------------------------------------------------------------------------------