voc_utils.py 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# 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
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
import os.path as osp
import re
import random
import shutil

K
Kaipeng Deng 已提交
25
__all__ = ['create_list']
26 27


K
Kaipeng Deng 已提交
28
def create_list(devkit_dir, years, output_dir):
29
    """
K
Kaipeng Deng 已提交
30 31 32
    create following list:
        1. trainval.txt
        2. test.txt
33 34 35 36 37 38 39 40 41
    """
    trainval_list = []
    test_list = []
    for year in years:
        trainval, test = _walk_voc_dir(devkit_dir, year, output_dir)
        trainval_list.extend(trainval)
        test_list.extend(test)

    random.shuffle(trainval_list)
K
Kaipeng Deng 已提交
42
    with open(osp.join(output_dir, 'trainval.txt'), 'w') as ftrainval:
43
        for item in trainval_list:
K
Kaipeng Deng 已提交
44
            ftrainval.write(item[0] + ' ' + item[1] + '\n')
45

K
Kaipeng Deng 已提交
46 47 48 49 50
    with open(osp.join(output_dir, 'test.txt'), 'w') as fval:
        ct = 0
        for item in test_list:
            ct += 1
            fval.write(item[0] + ' ' + item[1] + '\n')
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67


def _get_voc_dir(devkit_dir, year, type):
    return osp.join(devkit_dir, 'VOC' + year, type)


def _walk_voc_dir(devkit_dir, year, output_dir):
    filelist_dir = _get_voc_dir(devkit_dir, year, 'ImageSets/Main')
    annotation_dir = _get_voc_dir(devkit_dir, year, 'Annotations')
    img_dir = _get_voc_dir(devkit_dir, year, 'JPEGImages')
    trainval_list = []
    test_list = []
    added = set()

    for _, _, files in os.walk(filelist_dir):
        for fname in files:
            img_ann_list = []
Q
qingqing01 已提交
68
            if re.match(r'[a-z]+_trainval\.txt', fname):
69
                img_ann_list = trainval_list
Q
qingqing01 已提交
70
            elif re.match(r'[a-z]+_test\.txt', fname):
71 72 73 74 75 76 77 78 79
                img_ann_list = test_list
            else:
                continue
            fpath = osp.join(filelist_dir, fname)
            for line in open(fpath):
                name_prefix = line.strip().split()[0]
                if name_prefix in added:
                    continue
                added.add(name_prefix)
W
wangguanzhong 已提交
80 81 82 83 84
                ann_path = osp.join(
                    osp.relpath(annotation_dir, output_dir),
                    name_prefix + '.xml')
                img_path = osp.join(
                    osp.relpath(img_dir, output_dir), name_prefix + '.jpg')
K
Kaipeng Deng 已提交
85
                img_ann_list.append((img_path, ann_path))
86 87

    return trainval_list, test_list