环境:win10,keras2.1.6,python3.6,ensorflow1.8-gpu
mask_rcnn源代码:https://github.com/matterport/Mask_RCNN。
错误一:
运行D:\python\jupyter\Mask_RCNN-master\samples目录下的demo.ipynb文件,用jupyter notebook命令打开该文件运行会出现
ModuleNotFoundError: No module named 'pycocotools'。
解决办法:参照https://github.com/philferriere/cocoapi这篇github文章。按文章所指首先你必须有On Windows, you must have the Visual C++ 2015 build tools on your path(注:原文已经给出安装软件,点击下载即可。安装时需要在线安装)。然后运行命令就可解决问题:
pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
值得注意的是,如果你的操作系统是linux而不是windows,你需要参照这篇文章https://github.com/cocodataset/cocoapi 。
错误二