├── README.md ├── classification ├── models.py └── train.py ├── doc ├── 图像识别.docx ├── 目标检测.docx └── 语义分割.docx ├── papers ├── Classification │ ├── AlexNet.pdf │ ├── GoogleNet.pdf │ ├── LeNet.pdf │ ├── ResNet.pdf │ ├── VGG.pdf │ └── ViT.pdf ├── Detection │ ├── Object Detection in 20 Years A Survey.pdf │ ├── YOLO Nano.pdf │ ├── YOLO.pdf │ ├── YOLOv2.pdf │ └── YOLOv3.pdf └── Segment │ ├── ASPP(Deeplabv3).pdf │ ├── Deeplabv2.pdf │ ├── FCN.pdf │ ├── SETR.pdf │ └── UNet.pdf ├── segment ├── models.py ├── train_voc.py ├── utils.py ├── vit.py └── voc_data.py └── yolov3 ├── README.txt ├── cfg ├── yolov3-20.cfg └── yolov3.cfg ├── data.zip ├── detect.py ├── model.py ├── train.py └── utils ├── datasets.py ├── parse_config.py ├── torch_utils.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/README.md -------------------------------------------------------------------------------- /classification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/classification/models.py -------------------------------------------------------------------------------- /classification/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/classification/train.py -------------------------------------------------------------------------------- /doc/图像识别.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/doc/图像识别.docx -------------------------------------------------------------------------------- /doc/目标检测.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/doc/目标检测.docx -------------------------------------------------------------------------------- /doc/语义分割.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/doc/语义分割.docx -------------------------------------------------------------------------------- /papers/Classification/AlexNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/AlexNet.pdf -------------------------------------------------------------------------------- /papers/Classification/GoogleNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/GoogleNet.pdf -------------------------------------------------------------------------------- /papers/Classification/LeNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/LeNet.pdf -------------------------------------------------------------------------------- /papers/Classification/ResNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/ResNet.pdf -------------------------------------------------------------------------------- /papers/Classification/VGG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/VGG.pdf -------------------------------------------------------------------------------- /papers/Classification/ViT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Classification/ViT.pdf -------------------------------------------------------------------------------- /papers/Detection/Object Detection in 20 Years A Survey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Detection/Object Detection in 20 Years A Survey.pdf -------------------------------------------------------------------------------- /papers/Detection/YOLO Nano.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Detection/YOLO Nano.pdf -------------------------------------------------------------------------------- /papers/Detection/YOLO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Detection/YOLO.pdf -------------------------------------------------------------------------------- /papers/Detection/YOLOv2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Detection/YOLOv2.pdf -------------------------------------------------------------------------------- /papers/Detection/YOLOv3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Detection/YOLOv3.pdf -------------------------------------------------------------------------------- /papers/Segment/ASPP(Deeplabv3).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Segment/ASPP(Deeplabv3).pdf -------------------------------------------------------------------------------- /papers/Segment/Deeplabv2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Segment/Deeplabv2.pdf -------------------------------------------------------------------------------- /papers/Segment/FCN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Segment/FCN.pdf -------------------------------------------------------------------------------- /papers/Segment/SETR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Segment/SETR.pdf -------------------------------------------------------------------------------- /papers/Segment/UNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/papers/Segment/UNet.pdf -------------------------------------------------------------------------------- /segment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/segment/models.py -------------------------------------------------------------------------------- /segment/train_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/segment/train_voc.py -------------------------------------------------------------------------------- /segment/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/segment/utils.py -------------------------------------------------------------------------------- /segment/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/segment/vit.py -------------------------------------------------------------------------------- /segment/voc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/segment/voc_data.py -------------------------------------------------------------------------------- /yolov3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/README.txt -------------------------------------------------------------------------------- /yolov3/cfg/yolov3-20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/cfg/yolov3-20.cfg -------------------------------------------------------------------------------- /yolov3/cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/cfg/yolov3.cfg -------------------------------------------------------------------------------- /yolov3/data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/data.zip -------------------------------------------------------------------------------- /yolov3/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/detect.py -------------------------------------------------------------------------------- /yolov3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/model.py -------------------------------------------------------------------------------- /yolov3/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/train.py -------------------------------------------------------------------------------- /yolov3/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/utils/datasets.py -------------------------------------------------------------------------------- /yolov3/utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/utils/parse_config.py -------------------------------------------------------------------------------- /yolov3/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/utils/torch_utils.py -------------------------------------------------------------------------------- /yolov3/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafitte1573/CV-Collection/HEAD/yolov3/utils/utils.py --------------------------------------------------------------------------------