labelme2voc.py 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/usr/bin/env python

from __future__ import print_function

import argparse
import glob
import json
import os
import os.path as osp

import numpy as np
import PIL.Image

import labelme


def main():
    parser = argparse.ArgumentParser(
19 20 21 22 23
        formatter_class=argparse.ArgumentDefaultsHelpFormatter
    )
    parser.add_argument('input_dir', help='input annotated directory')
    parser.add_argument('output_dir', help='output dataset directory')
    parser.add_argument('--labels', help='labels file')
24 25
    args = parser.parse_args()

26 27 28 29 30 31 32 33 34
    if osp.exists(args.output_dir):
        print('Output directory already exists:', args.output_dir)
        sys.exit(1)
    os.makedirs(args.output_dir)
    os.makedirs(osp.join(args.output_dir, 'JPEGImages'))
    os.makedirs(osp.join(args.output_dir, 'SegmentationClass'))
    os.makedirs(osp.join(args.output_dir, 'SegmentationClassPNG'))
    os.makedirs(osp.join(args.output_dir, 'SegmentationClassVisualization'))
    print('Creating dataset:', args.output_dir)
35 36 37

    class_names = []
    class_name_to_id = {}
38
    for i, line in enumerate(open(args.labels).readlines()):
39 40 41 42 43 44 45 46 47 48 49
        class_id = i - 1  # starts with -1
        class_name = line.strip()
        class_name_to_id[class_name] = class_id
        if class_id == -1:
            assert class_name == '__ignore__'
            continue
        elif class_id == 0:
            assert class_name == '_background_'
        class_names.append(class_name)
    class_names = tuple(class_names)
    print('class_names:', class_names)
50
    out_class_names_file = osp.join(args.output_dir, 'class_names.txt')
51 52 53 54 55 56
    with open(out_class_names_file, 'w') as f:
        f.writelines('\n'.join(class_names))
    print('Saved class_names:', out_class_names_file)

    colormap = labelme.utils.label_colormap(255)

57
    for label_file in glob.glob(osp.join(args.input_dir, '*.json')):
58 59 60 61
        print('Generating dataset from:', label_file)
        with open(label_file) as f:
            base = osp.splitext(osp.basename(label_file))[0]
            out_img_file = osp.join(
62
                args.output_dir, 'JPEGImages', base + '.jpg')
63
            out_lbl_file = osp.join(
64
                args.output_dir, 'SegmentationClass', base + '.npy')
65
            out_png_file = osp.join(
66
                args.output_dir, 'SegmentationClassPNG', base + '.png')
67
            out_viz_file = osp.join(
68 69 70 71
                args.output_dir,
                'SegmentationClassVisualization',
                base + '.jpg',
            )
72 73 74 75

            data = json.load(f)

            img_file = osp.join(osp.dirname(label_file), data['imagePath'])
K
Kentaro Wada 已提交
76 77
            img = np.asarray(PIL.Image.open(img_file))
            PIL.Image.fromarray(img).save(out_img_file)
78

79
            lbl = labelme.utils.shapes_to_label(
80 81 82 83
                img_shape=img.shape,
                shapes=data['shapes'],
                label_name_to_value=class_name_to_id,
            )
K
Kentaro Wada 已提交
84
            labelme.utils.lblsave(out_png_file, lbl)
85

86
            np.save(out_lbl_file, lbl)
87

88
            viz = labelme.utils.draw_label(
89
                lbl, img, class_names, colormap=colormap)
K
Kentaro Wada 已提交
90
            PIL.Image.fromarray(viz).save(out_viz_file)
91 92 93 94


if __name__ == '__main__':
    main()