笔记1:coco

COCO是图像识别+分割+标题的图像数据集,安装Python COCO tools时Windows的平台:https://www.jianshu.com/p/de455d653301
在这里插入图片描述
为了取得在COCO资料集里图像与各种标注(annotations), COCO提供以下API:
download 从mscoco.org服务器下载COCO图像
getAnnIds 获取满足给定过滤器条件的annotation ids
getCatIds 获取满足给定过滤条件的category ids
getImgIds 获取满足给定过滤条件的imgage ids
loadAnns 用指定的id加载annotations
loadCats 使用指定的id加载categories
loadImgs 用指定的id加载imgs
loadRes 加载算法结果并创建用于访问它们的API
showAnns 显示指定的标注资讯

猜你喜欢

转载自blog.csdn.net/weixin_43435675/article/details/94360340