123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/usr/bin/env python
- import argparse
- import json
- import matplotlib.pyplot as plt
- from labelme import utils
- def main():
- parser = argparse.ArgumentParser()
- parser.add_argument('json_file')
- args = parser.parse_args()
- json_file = args.json_file
- data = json.load(open(json_file))
- img = utils.img_b64_to_arr(data['imageData'])
- label_name_to_value = {'_background_': 0}
- for shape in data['shapes']:
- label_name = shape['label']
- if label_name in label_name_to_value:
- label_value = label_name_to_value[label_name]
- else:
- label_value = len(label_name_to_value)
- label_name_to_value[label_name] = label_value
- lbl = utils.shapes_to_label(
- img.shape, data['shapes'], label_name_to_value)
- captions = ['{}: {}'.format(lv, ln)
- for ln, lv in label_name_to_value.items()]
- lbl_viz = utils.draw_label(lbl, img, captions)
- plt.subplot(121)
- plt.imshow(img)
- plt.subplot(122)
- plt.imshow(lbl_viz)
- plt.show()
- if __name__ == '__main__':
- main()
|