COCO PythonAPI 使用前的准备

文章目录

      • 1 安装 pycocotools
      • 2 COCO 数据集的下载

1 安装 pycocotools

直接使用 pip 安装:

pip install pycocotools

可能会报错:

Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++

这要求你下载 VS不推荐。建议直接安装已经编译好的 whl 文件,下载地址为 :https://pypi.tuna.tsinghua.edu.cn/simple/pycocotools-windows/

2 COCO 数据集的下载

在使用 COCO数据集 的过程中,我们可能需要下载许多的数据,如 图片数据注释文件。可以在官网安装 :https://cocodataset.org/#download,但是下载网址官网给的是 http,已崩。解决方法如下:
COCO PythonAPI 使用前的准备_第1张图片
将下载网址改成 https 即可下载。

你可能感兴趣的:(深度学习,COCO,目标检测,数据集,图像分割,python)