windows10编译 Pycocotools

名词解释

  • COCO 是什么?

       Microsoft COCO 是一个标注过的图片数据集,可用以目标检测、分割和描述生成等。Yep, it's all about MS COCO API...

  • Pycocotools 是什么?

       顾名思义,python api tools of coco...

 

实操走起

git clone https://github.com/pdollar/coco.git
  • 编译
cd coco/PythonAPI
  1. # install pycocotools locally

  2. python setup.py build_ext --inplace

  3.  
  4. # install pycocotools to the Python site-packages

  5. python setup.py build_ext install

 

验证是install成功

 

 

 

RF:windows10编译 Pycocotools出错解决方案

猜你喜欢

转载自blog.csdn.net/tony2278/article/details/89332864