# The following API functions are defined: # COCO - COCO api class that loads COCO annotation file and prepare data structures. 加载COCO注释文件并准备数据结构的COCO api类。 # decodeMask - Decode binary mask M encoded via run-length encoding. 通过运行长度编码解码二进制掩码M。 # encodeMask - Encode binary mask M using run-length encoding. 使用运行长度编码对二进制掩码M进行编码。 # getAnnIds - Get ann ids that satisfy given filter conditions. 得到满足给定过滤条件的annotation的id。 # getCatIds - Get cat ids that satisfy given filter conditions. 获得满足给定过滤条件的category的id。 # getImgIds - Get img ids that satisfy given filter conditions. 得到满足给定过滤条件的imgage的id。 # loadAnns - Load anns with the specified ids. 使用指定的id加载annotation。 # loadCats - Load cats with the specified ids. 使用指定的id加载category。 # loadImgs - Load imgs with the specified ids. 使用指定的id加载imgage。 # annToMask - Convert segmentation in an annotation to binary mask. 将注释中的segmentation转换为二进制mask。 # showAnns - Display the specified annotations. 显示指定的annotation。 # loadRes - Load algorithm results and create API for accessing them. 加载算法结果并创建访问它们的API。 # download - Download COCO images from mscoco.org server. 从mscoco.org服务器下载COCO图像。 # Throughout the API "ann"=annotation, "cat"=category, and "img"=image. # Help on each functions can be accessed by: "help COCO>function".