coco.py 6.8 KB
Newer Older
G
Guanghua Yu 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. 
#   
# Licensed under the Apache License, Version 2.0 (the "License");   
# you may not use this file except in compliance with the License.  
# You may obtain a copy of the License at   
#   
#     http://www.apache.org/licenses/LICENSE-2.0    
#   
# Unless required by applicable law or agreed to in writing, software   
# distributed under the License is distributed on an "AS IS" BASIS, 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
# See the License for the specific language governing permissions and   
13 14 15 16
# limitations under the License.

import os
import numpy as np
G
Guanghua Yu 已提交
17
import logging
18
from ppdet.core.workspace import register, serializable
G
Guanghua Yu 已提交
19
from .dataset import DetDataset
20 21 22 23 24 25

logger = logging.getLogger(__name__)


@register
@serializable
G
Guanghua Yu 已提交
26
class COCODataSet(DetDataset):
27
    def __init__(self,
G
Guanghua Yu 已提交
28
                 dataset_dir=None,
29 30
                 image_dir=None,
                 anno_path=None,
31
                 data_fields=['image'],
K
Kaipeng Deng 已提交
32
                 sample_num=-1):
33
        super(COCODataSet, self).__init__(dataset_dir, image_dir, anno_path,
34
                                          data_fields, sample_num)
W
wangguanzhong 已提交
35
        self.load_image_only = False
G
Guanghua Yu 已提交
36
        self.load_semantic = False
37

G
Guanghua Yu 已提交
38
    def parse_dataset(self, with_background=True):
39 40 41 42 43
        anno_path = os.path.join(self.dataset_dir, self.anno_path)
        image_dir = os.path.join(self.dataset_dir, self.image_dir)

        assert anno_path.endswith('.json'), \
            'invalid coco annotation file: ' + anno_path
W
wangguanzhong 已提交
44
        from pycocotools.coco import COCO
45 46 47 48 49 50 51 52 53
        coco = COCO(anno_path)
        img_ids = coco.getImgIds()
        cat_ids = coco.getCatIds()
        records = []
        ct = 0

        # when with_background = True, mapping category to classid, like:
        #   background:0, first_class:1, second_class:2, ...
        catid2clsid = dict({
K
Kaipeng Deng 已提交
54
            catid: i + int(with_background)
55 56 57 58 59 60 61
            for i, catid in enumerate(cat_ids)
        })
        cname2cid = dict({
            coco.loadCats(catid)[0]['name']: clsid
            for catid, clsid in catid2clsid.items()
        })

W
wangguanzhong 已提交
62 63
        if 'annotations' not in coco.dataset:
            self.load_image_only = True
Q
qingqing01 已提交
64 65
            logger.warning('Annotation file: {} does not contains ground truth '
                           'and load image information only.'.format(anno_path))
W
wangguanzhong 已提交
66

67 68 69 70 71 72
        for img_id in img_ids:
            img_anno = coco.loadImgs(img_id)[0]
            im_fname = img_anno['file_name']
            im_w = float(img_anno['width'])
            im_h = float(img_anno['height'])

G
Guanghua Yu 已提交
73 74 75
            im_path = os.path.join(image_dir,
                                   im_fname) if image_dir else im_fname
            if not os.path.exists(im_path):
Q
qingqing01 已提交
76 77
                logger.warning('Illegal image file: {}, and it will be '
                               'ignored'.format(im_path))
W
wangguanzhong 已提交
78 79 80
                continue

            if im_w < 0 or im_h < 0:
Q
qingqing01 已提交
81 82 83
                logger.warning('Illegal width: {} or height: {} in annotation, '
                               'and im_id: {} will be ignored'.format(
                                   im_w, im_h, img_id))
W
wangguanzhong 已提交
84
                continue
W
wangguanzhong 已提交
85 86 87 88

            if not self.load_image_only:
                ins_anno_ids = coco.getAnnIds(imgIds=img_id, iscrowd=False)
                instances = coco.loadAnns(ins_anno_ids)
G
Guanghua Yu 已提交
89

W
wangguanzhong 已提交
90 91
                bboxes = []
                for inst in instances:
G
Guanghua Yu 已提交
92 93 94 95 96 97
                    # check gt bbox
                    if 'bbox' not in inst.keys():
                        continue
                    else:
                        if not any(np.array(inst['bbox'])):
                            continue
W
wangguanzhong 已提交
98 99 100 101 102 103 104 105 106
                    x, y, box_w, box_h = inst['bbox']
                    x1 = max(0, x)
                    y1 = max(0, y)
                    x2 = min(im_w - 1, x1 + max(0, box_w - 1))
                    y2 = min(im_h - 1, y1 + max(0, box_h - 1))
                    if inst['area'] > 0 and x2 >= x1 and y2 >= y1:
                        inst['clean_bbox'] = [x1, y1, x2, y2]
                        bboxes.append(inst)
                    else:
Q
qingqing01 已提交
107
                        logger.warning(
W
wangguanzhong 已提交
108 109 110
                            'Found an invalid bbox in annotations: im_id: {}, '
                            'area: {} x1: {}, y1: {}, x2: {}, y2: {}.'.format(
                                img_id, float(inst['area']), x1, y1, x2, y2))
111

W
wangguanzhong 已提交
112
                num_bbox = len(bboxes)
113 114
                if num_bbox <= 0:
                    continue
W
wangguanzhong 已提交
115 116 117 118 119 120 121

                gt_bbox = np.zeros((num_bbox, 4), dtype=np.float32)
                gt_class = np.zeros((num_bbox, 1), dtype=np.int32)
                is_crowd = np.zeros((num_bbox, 1), dtype=np.int32)
                difficult = np.zeros((num_bbox, 1), dtype=np.int32)
                gt_poly = [None] * num_bbox

122
                has_segmentation = False
W
wangguanzhong 已提交
123 124 125 126 127
                for i, box in enumerate(bboxes):
                    catid = box['category_id']
                    gt_class[i][0] = catid2clsid[catid]
                    gt_bbox[i, :] = box['clean_bbox']
                    is_crowd[i][0] = box['iscrowd']
G
Guanghua Yu 已提交
128
                    # check RLE format 
W
wangguanzhong 已提交
129
                    if 'segmentation' in box and box['iscrowd'] == 1:
G
Guanghua Yu 已提交
130
                        gt_poly[i] = [[0.0, 0.0], ]
W
wangguanzhong 已提交
131
                    elif 'segmentation' in box:
W
wangguanzhong 已提交
132
                        gt_poly[i] = box['segmentation']
133
                        has_segmentation = True
W
wangguanzhong 已提交
134

135
                if has_segmentation and not any(gt_poly):
G
Guanghua Yu 已提交
136 137
                    continue

138 139 140 141 142 143 144 145
                coco_rec = {
                    'im_file': im_path,
                    'im_id': np.array([img_id]),
                    'h': im_h,
                    'w': im_w,
                } if 'image' in self.data_fields else {}

                gt_rec = {
W
wangguanzhong 已提交
146 147 148 149
                    'is_crowd': is_crowd,
                    'gt_class': gt_class,
                    'gt_bbox': gt_bbox,
                    'gt_poly': gt_poly,
150 151 152 153 154
                }
                for k, v in gt_rec.items():
                    if k in self.data_fields:
                        coco_rec[k] = v

G
Guanghua Yu 已提交
155
                # TODO: remove load_semantic
156
                if self.load_semantic and 'semantic' in self.data_fields:
G
Guanghua Yu 已提交
157 158 159
                    seg_path = os.path.join(self.dataset_dir, 'stuffthingmaps',
                                            'train2017', im_fname[:-3] + 'png')
                    coco_rec.update({'semantic': seg_path})
W
wangguanzhong 已提交
160

161
            logger.debug('Load file: {}, im_id: {}, h: {}, w: {}.'.format(
G
Guanghua Yu 已提交
162
                im_path, img_id, im_h, im_w))
163 164 165 166 167
            records.append(coco_rec)
            ct += 1
            if self.sample_num > 0 and ct >= self.sample_num:
                break
        assert len(records) > 0, 'not found any coco record in %s' % (anno_path)
Y
Yang Zhang 已提交
168
        logger.debug('{} samples in file {}'.format(ct, anno_path))
169
        self.roidbs, self.cname2cid = records, cname2cid