├── .gitattributes ├── .idea └── vcs.xml ├── README.md ├── VGG16_model └── vgg16_weights_tf_dim_ordering_tf_kernels.h5 ├── main ├── MedicalLargeClassification.py ├── MedicalLargeFine_tuning.py └── MedicalSegmentFine_tuning.py ├── picture └── craw_picture.py ├── src ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png └── testCase ├── 10室内.jpg ├── 11人物.jpg ├── 12人物.jpg ├── 13人物.jpg ├── 14人物.jpg ├── 15人物.jpg ├── 16动物.JPEG ├── 17动物.JPEG ├── 18动物.JPEG ├── 19动物.JPEG ├── 1交通.jpg ├── 20动物.JPEG ├── 21医学胸部.png ├── 22医学胸部.png ├── 23医学胸部.png ├── 24医学胸部.png ├── 25医学胸部.png ├── 26医学四肢.png ├── 27医学四肢.png ├── 28医学四肢.png ├── 29医学四肢.png ├── 2交通.jpg ├── 30医学四肢.png ├── 31医学头部.png ├── 32医学头部.png ├── 33医学头部.png ├── 34医学头部.png ├── 35医学头部.png ├── 3交通.jpg ├── 4交通.jpg ├── 5交通.jpg ├── 6室内.jpg ├── 7室内.jpg ├── 8室内.jpg └── 9室内.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/README.md -------------------------------------------------------------------------------- /VGG16_model/vgg16_weights_tf_dim_ordering_tf_kernels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/VGG16_model/vgg16_weights_tf_dim_ordering_tf_kernels.h5 -------------------------------------------------------------------------------- /main/MedicalLargeClassification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/main/MedicalLargeClassification.py -------------------------------------------------------------------------------- /main/MedicalLargeFine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/main/MedicalLargeFine_tuning.py -------------------------------------------------------------------------------- /main/MedicalSegmentFine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/main/MedicalSegmentFine_tuning.py -------------------------------------------------------------------------------- /picture/craw_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/picture/craw_picture.py -------------------------------------------------------------------------------- /src/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/src/1.png -------------------------------------------------------------------------------- /src/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/src/2.png -------------------------------------------------------------------------------- /src/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/src/3.png -------------------------------------------------------------------------------- /src/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/src/4.png -------------------------------------------------------------------------------- /src/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/src/5.png -------------------------------------------------------------------------------- /testCase/10室内.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/10室内.jpg -------------------------------------------------------------------------------- /testCase/11人物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/11人物.jpg -------------------------------------------------------------------------------- /testCase/12人物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/12人物.jpg -------------------------------------------------------------------------------- /testCase/13人物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/13人物.jpg -------------------------------------------------------------------------------- /testCase/14人物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/14人物.jpg -------------------------------------------------------------------------------- /testCase/15人物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/15人物.jpg -------------------------------------------------------------------------------- /testCase/16动物.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/16动物.JPEG -------------------------------------------------------------------------------- /testCase/17动物.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/17动物.JPEG -------------------------------------------------------------------------------- /testCase/18动物.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/18动物.JPEG -------------------------------------------------------------------------------- /testCase/19动物.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/19动物.JPEG -------------------------------------------------------------------------------- /testCase/1交通.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/1交通.jpg -------------------------------------------------------------------------------- /testCase/20动物.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/20动物.JPEG -------------------------------------------------------------------------------- /testCase/21医学胸部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/21医学胸部.png -------------------------------------------------------------------------------- /testCase/22医学胸部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/22医学胸部.png -------------------------------------------------------------------------------- /testCase/23医学胸部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/23医学胸部.png -------------------------------------------------------------------------------- /testCase/24医学胸部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/24医学胸部.png -------------------------------------------------------------------------------- /testCase/25医学胸部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/25医学胸部.png -------------------------------------------------------------------------------- /testCase/26医学四肢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/26医学四肢.png -------------------------------------------------------------------------------- /testCase/27医学四肢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/27医学四肢.png -------------------------------------------------------------------------------- /testCase/28医学四肢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/28医学四肢.png -------------------------------------------------------------------------------- /testCase/29医学四肢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/29医学四肢.png -------------------------------------------------------------------------------- /testCase/2交通.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/2交通.jpg -------------------------------------------------------------------------------- /testCase/30医学四肢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/30医学四肢.png -------------------------------------------------------------------------------- /testCase/31医学头部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/31医学头部.png -------------------------------------------------------------------------------- /testCase/32医学头部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/32医学头部.png -------------------------------------------------------------------------------- /testCase/33医学头部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/33医学头部.png -------------------------------------------------------------------------------- /testCase/34医学头部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/34医学头部.png -------------------------------------------------------------------------------- /testCase/35医学头部.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/35医学头部.png -------------------------------------------------------------------------------- /testCase/3交通.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/3交通.jpg -------------------------------------------------------------------------------- /testCase/4交通.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/4交通.jpg -------------------------------------------------------------------------------- /testCase/5交通.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/5交通.jpg -------------------------------------------------------------------------------- /testCase/6室内.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/6室内.jpg -------------------------------------------------------------------------------- /testCase/7室内.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/7室内.jpg -------------------------------------------------------------------------------- /testCase/8室内.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/8室内.jpg -------------------------------------------------------------------------------- /testCase/9室内.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/Image-category-understanding-and-application/HEAD/testCase/9室内.jpg --------------------------------------------------------------------------------