IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 从mask读取轮廓点坐标到json文件 -> 正文阅读

[Python知识库]从mask读取轮廓点坐标到json文件

import os
from collections import defaultdict, OrderedDict
import json
import numpy as np
import cv2
import glob

class NpEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, np.integer):
            return int(obj)
        elif isinstance(obj, np.floating):
            return float(obj)
        elif isinstance(obj, np.ndarray):
            return obj.tolist()
        else:
            return super(NpEncoder, self).default(obj)


results = defaultdict(list)
mask = defaultdict(list)
volume= defaultdict(list)
stress= defaultdict(list)
parm= defaultdict(list)

line=defaultdict(list)
param=defaultdict(list)


results["mask"] =[]
results["volume"] =volume
results["stress"] =stress
results["parm"] =param
# mask["series_number"]=1
# mask["slice_index"]=1
# mask["rois"]=rois
# rois["RV"]= contours1
# rois["LV-Inner"]=contours2[0]
# rois["LV-Ext"]=contours2[1]
# rois["PPM"]=contours4
volume["line"]=[[10, 100], [20, 3000]]
volume["ED"]=10
volume["ES"]=100
stress["GLS"]=-19.5
stress["GCS"]=-17.7
stress["GRS"]=39.7
param["EDV"]=201
param["ESV"]=105
param["LVM"]=189

test_dict = {
    "patientID": "0000086930",
    "studyUID": "1.2.842065.95027634.776400958",
    "seriesUID": "1.3.12.2.1107.5.2.43.166151.2022011508231736189313766.0.0.0",
    "task": "CardiacMRI",
    'results': results,

}


# files = glob.glob('./data/test/outputs/1464455/*')
files = os.listdir('./data/test/pre/1464455/')
print('files1',files)
files.sort()
print('files2',files)

# for imgp in os.listdir('./data/test/pre/1464455'):
for imgp in files:
    # imbgr = cv2.imread('./data/test/pre/1464457/224.png')
    id=str(imgp).replace('.png','')
    print('id', id)
    imgp=os.path.join('./data/test/pre/1464455', imgp)
    print('imgp',imgp)
    imbgr = cv2.imread(imgp)
    imgray_path=imgp.replace('pre','outputs')
    imgray = cv2.imread(imgray_path, 0)
    # 以灰度图读取mask图片,那么不同物体对应的像素值是不同的,提取统一像素值的所有位置
    img = np.array(imgray)
    # mask中物体1 RV 的像素值为38,设定像素范围来获取所有坐标
    upper1 = img <= 40
    lower1 = img >= 30
    thresh1 = (np.multiply(upper1, lower1).astype(np.float32) * 255).astype(np.uint8)

    # mask中物体2 Myo 的像素值为75,设定像素范围来获取所有坐标
    upper2 = imgray <= 80
    lower2 = imgray >= 60
    thresh2 = (np.multiply(upper2, lower2).astype(np.float32) * 255).astype(np.uint8)

    # mask中物体3  LV的像素值为113,设定像素范围来获取所有坐标
    upper3 = imgray <= 120
    lower3 = imgray >= 110
    thresh3 = (np.multiply(upper3, lower3).astype(np.float32) * 255).astype(np.uint8)

    # mask中物体4  PPm的像素值为15,设定像素范围来获取所有坐标
    upper4 = imgray <= 20
    lower4 = imgray >= 5
    thresh4 = (np.multiply(upper4, lower4).astype(np.float32) * 255).astype(np.uint8)

    contours1, hierarchy1 = cv2.findContours(thresh1, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
    contours2, hierarchy2 = cv2.findContours(thresh2, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
    contours3, hierarchy3 = cv2.findContours(thresh3, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
    contours4, hierarchy4 = cv2.findContours(thresh4, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

    lst1 = []
    for i, cous in enumerate(contours1):
        a = cv2.contourArea(cous)
        print('contours1:', i, a)
        if a >= 100:
            lst1.append(cous)
    contours1 = lst1

    lst2 = []
    for i, cous in enumerate(contours2):
        a = cv2.contourArea(cous)
        print('contours2:', i, a)
        if a >= 30:
            lst2.append(cous)
    contours2 = lst2

    lst4 = []
    for i, cous in enumerate(contours4):
        a = cv2.contourArea(cous)
        print('contours4:', i, a)
        if a >= 5:
            lst4.append(cous)
    contours4 = lst4

    label = defaultdict(list)
    rois = defaultdict(list)
    RV = defaultdict(list)
    LVI = defaultdict(list)
    LVE = defaultdict(list)
    PPM = defaultdict(list)

    label["series_number"]=1
    label["slice_index"] = int(id)
    print('label-id',id)
    label["rois"]=rois

    if contours1:
            rois["RV"]=contours1
    else :  rois["RV"]=[]

    if len(contours2) == 1:
        rois["LV-Inner"] = contours2[0]
        rois["LV-Ext"] = []
    elif  len(contours2)>=2:
            rois["LV-Inner"]=contours2[0]
            rois["LV-Ext"] = contours2[1]
    else:
            rois["LV-Inner"]=[]
            rois["LV-Ext"]=[]

    rois["LV-Ext"]=[]

    if contours4:
        rois["PPM"]=contours4
    else:rois["PPM"]=[]

    results["mask"].append(label)



json_str = json.dumps(test_dict, cls=NpEncoder)
with open('patient-1464455.json', 'w') as json_file:
    json_file.write(json_str)

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 18:19:14  更:2022-03-30 18:22:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 19:44:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码