目标检测资料

YOLO 算法最全综述:从 YOLOv1 到 YOLOv5

https://www.cnblogs.com/shuimuqingyang/p/14200018.html

YOLOv4 的各种新实现、配置、测试、训练资源汇总

https://mp.weixin.qq.com/s?__biz=MzIwMTE1NjQxMQ==&mid=2247506196&idx=2&sn=d5de504af0edf82697c6f0ecfcb50d12&chksm=96f0ab40a18722569c8cd15c03529e1d29d11b66be526b26b53d443611babda339a8fc37ab23&mpshare=1&scene=1&srcid=0427URofQY95wbfbpZELWNGk&sharer_sharetime=1587994657016&sharer_shareid=c69c9a4255c32bdac8d66c388b9626a6#rd

一文了解YOLO-v4目标检测

https://zhuanlan.zhihu.com/p/137393450

算法实验】能检测COCO并鉴黄的SexyYolo(含福利)

https://zhuanlan.zhihu.com/p/106586069

解决ImportError: No module named utils

https://blog.csdn.net/weixin_43979572/article/details/86159265?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.pc_relevant_baidujshouduan&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.pc_relevant_baidujshouduan

最后解决的办法是: 在utils文件下加上一个__init__.py文件就可以了。

https://www.cnblogs.com/dreamyu/p/7889959.html

在报错的模块中添加: import sys import os curPath = os.path.abspath(os.path.dirname(__file__)) rootPath = os.path.split(curPath)[0] sys.path.append(rootPath)

https://www.cnblogs.com/dreamyu/p/7889959.html

NSFW Dataset 

https://zhuanlan.zhihu.com/p/56679696

【YOLO初探】 yolo_tensorflow_v1使用YOLO_small.ckpt进行测试

https://blog.csdn.net/plSong_CSDN/article/details/86348413

【目标检测】YOLOv1代码实现之TensorFlow

https://blog.csdn.net/qq_36926037/article/details/105533555?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_title~default-0.control&spm=1001.2101.3001.4242

【目标检测】YOLOv1源码解析

https://blog.csdn.net/baidu_27643275/article/details/82794559

https://github.com/TowardsNorth/yolo_v1_tensorflow_guiyu

https://github.com/hizhangp/yolo_tensorflow

https://github.com/1273545169/object-detection/tree/master/yolo

https://github.com/leeyoshinari/YOLO_v1

https://github.com/shankezh/DL_HotNet_Tensorflow

yolo源码解析(一)

https://www.cnblogs.com/sddai/p/10288074.html

YOLO-tensorflow代码解析二(yolo_net.py)

 http://www.manongjc.com/article/68717.html

TensorFlow-YOLO_V2测试代码梳理

https://blog.csdn.net/samylee/article/details/85709892

Tensorflow实现YOLOv2(亲测有效!)

https://blog.csdn.net/u010712012/article/details/87374153

https://github.com/KOD-Chen/YOLOv2-Tensorflow

目标检测现有算法对比与资料收集

https://blog.csdn.net/hereiskxm/article/details/69246587

原文地址:https://www.cnblogs.com/funykatebird/p/15107328.html