本文整理汇总了Python中pycocotools.coco.COCO.info方法的典型用法代码示例。如果您正苦于以下问题:Python COCO.info方法的具体用法?Python COCO.info怎么用?Python COCO.info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pycocotools.coco.COCO
的用法示例。
在下文中一共展示了COCO.info方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: info
# 需要导入模块: from pycocotools.coco import COCO [as 别名]
# 或者: from pycocotools.coco.COCO import info [as 别名]
def info(self):
"""
Didn't change the original method, just call super
"""
return COCO.info(self)
示例2: parseArgs
# 需要导入模块: from pycocotools.coco import COCO [as 别名]
# 或者: from pycocotools.coco.COCO import info [as 别名]
print cat['name'], ': Hit =', hit, 'Miss =', miss, ' Acc =', accuracy
t0 = time.time()
return accuracy
if __name__ == '__main__':
args = parseArgs()
print args
# load COCO val2014
imset = 'val2014'
imgDir = '%s/images/%s/'%(coco_root, imset)
annFile = '%s/annotations/instances_%s.json'%(coco_root, imset)
cocoAnn = COCO(annFile)
cocoAnn.info()
catIds = cocoAnn.getCatIds()
catList = cocoAnn.loadCats(catIds)
# init caffe
caffeNet = initCaffe(args)
# get per-category accuracies
accuracy = []
for cat in catList:
catAcc = evalPointingGame(cocoAnn, cat, caffeNet, imgDir)
print cat['name'], ' Acc =', catAcc
accuracy.append(catAcc)
# report
for c in range(len(catList)):