Ai影像分割模型PaddleSeg——自定義資料集處理
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import argparse
import json
import os
import os.path as osp
import base64
import warnings
import PIL.Image
import yaml
from labelme import utils
import numpy as np
from skimage import img_as_ubyte
def main():
parser = argparse.ArgumentParser()
parser.add_argument('json_file')
parser.add_argument('-o', '--out', default=None)
args = parser.parse_args()
json_file = args.json_file
list_path = os.listdir(json_file)
for i in range(0, len(list_path)):
if list_path[i].endswith('.json'):
path = os.path.join(json_file, list_path[i])
if os.path.isfile(path):
data = json.load(open(path))
img = utils.img_b64_to_arr(data['imageData'])
lbl, lbl_names = utils.labelme_shapes_to_label(img.shape, data['shapes'])
captions = ['%d: %s' % (l, name) for l, name in enumerate(lbl_names)]
lbl_viz = utils.draw_label(lbl, img, captions)
save_file_name = osp.basename(path).replace('.', '_')
out_dir1 = osp.join(osp.dirname(path), 'labelme_results')
if not osp.exists(out_dir1):
os.mkdir(out_dir1)
out_dir1 = osp.join(out_dir1, save_file_name)
if not osp.exists(out_dir1):
os.mkdir(out_dir1)
PIL.Image.fromarray(img).save(out_dir1 + '\\' + save_file_name + '_img.png')
PIL.Image.fromarray(lbl).save(out_dir1 外匯跟單gendan5.com+ '\\' + save_file_name + '_label.png')
PIL.Image.fromarray(lbl_viz).save(out_dir1 + '\\' + save_file_name +
'_label_viz.png')
images_dir = osp.join(json_file, 'images_dir')
if not osp.exists(images_dir):
os.mkdir(images_dir)
labels_dir = osp.join(json_file, 'labels_dir')
if not osp.exists(labels_dir):
os.mkdir(labels_dir)
PIL.Image.fromarray(img).save(osp.join(images_dir, '{}_img.png'.format(save_file_name)))
PIL.Image.fromarray(lbl).save(osp.join(labels_dir, '{}_label.png'.format(save_file_name)))
with open(osp.join(out_dir1, 'label_names.txt'), 'w') as f:
for lbl_name in lbl_names:
f.write(lbl_name + '\n')
info = dict(label_names=lbl_names)
with open(osp.join(out_dir1, 'info.yaml'), 'w') as f:
yaml.safe_dump(info, f, default_flow_style=False)
print('Saved to: %s' % out_dir1)
if __name__ == '__main__':
# base64path = argv[1]
main()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2786263/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 影像處理開源資料集
- [影像處理] 基於CleanVision庫清洗影像資料集
- YOLOv9:在自定義資料上進行影像分割訓練YOLO
- 常用語義分割資料集
- PyTorch 自定義資料集PyTorch
- 數字影像處理day_12 影像分割
- 影像語義分割資料增強——imgaug(二)
- Siri自定義Intent以及處理Intent
- 自定義事件相容處理物件事件物件
- 影像資料不足時的處理方法
- SenseCraft 部署模型到Grove Vision AI V2影像處理模組Raft模型AI
- 分割模型的資料集由json轉為txt模型JSON
- UCI資料集詳解及其資料處理(附148個資料集及處理程式碼)
- C#實現DataTable資料分割處理C#
- 【Django】DRF自定義異常處理Django
- 谷歌開源最新語義影像分割模型DeepLab-v3+谷歌模型
- Mac影像後設資料處理器:MesaExifMac
- [BUG反饋]自定義模型不顯示資料模型
- [系列] Gin框架 - 自定義錯誤處理框架
- 【解決方案】基於資料庫驅動的自定義 TypeHandler 處理器資料庫
- hibernate跨資料庫,json欄位處理方案,自定義擴充套件JsonStringType資料庫JSON套件
- 記賬工具給的靈感,excel資料處理為自定義的格式Excel
- pytorch載入語音類自定義資料集PyTorch
- 影像處理--影像特效特效
- 醫學影像處理中的資料讀寫
- NUS-WIDE資料集預處理IDE
- hadoop mapreducez自定義分割槽Hadoop
- Kafka - 自定義分割槽器Kafka
- Python影像處理丨5種影像處理特效Python特效
- webgl 影像處理2---影像畫素處理Web
- restframework 異常處理及自定義異常RESTFramework
- Spring Cloud Gateway-自定義異常處理SpringCloudGateway
- SpringBoot系列——自定義統一異常處理Spring Boot
- 如何構建自定義人臉識別資料集
- 超多,超快,超強!百度飛槳釋出工業級影像分割利器PaddleSeg
- Python 影像處理 OpenCV (6):影像的閾值處理PythonOpenCV
- Python 影像處理 OpenCV (7):影像平滑(濾波)處理PythonOpenCV
- springboot下新增全域性異常處理和自定義異常處理Spring Boot