from __future__ import division, print_function, absolute_import
import numpy as np
import os
import json
from PIL import Image,ImageDraw
 
color_code={}
color_code['red']='#FF0000'
color_code['black']='#000000'
 
def get_each_mask(jsonpath):
    for file in os.listdir(jsonpath):
        json_file = jsonpath + file
        data = json.load(open(json_file))
        img = Image.new('RGB', [640, 640], color_code['black'])
        img1 = ImageDraw.Draw(img)
        label_idx_list = list(np.arange(len(data['shapes'])))
        for i in label_idx_list:
            if data['shapes'][i]['label'] == '1':
                xy = []
                for xy_tuple in data['shapes'][i]['points']:
                    xy += xy_tuple
                img1.polygon(xy, fill=color_code['red'], outline=color_code['red'])
                label_idx_list.remove(i)    
        img.save(r'/media/....../mask_thyroid/'+ os.path.splitext(file)[0] + '.png')
 
    for file in os.listdir(jsonpath):
        json_file = jsonpath + file
        data = json.load(open(json_file))
        img = Image.new('RGB', [640, 640], color_code['black'])
        img2 = ImageDraw.Draw(img)
        label_idx_list = list(np.arange(len(data['shapes'])))
        for i in label_idx_list:
            if data['shapes'][i]['label'] == '2':
                xy = []
                for xy_tuple in data['shapes'][i]['points']:
                    xy += xy_tuple
                img2.polygon(xy, fill=color_code['red'], outline=color_code['red'])
                label_idx_list.remove(i) 
        img.save(r'/media/....../mask_nodule/'+ os.path.splitext(file)[0] + '.png')
        
        
        
if __name__=='__main__':
    jsonpath=r'/media/....../json/'
    get_each_mask(jsonpath)
Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐