如何从dicom数据集中读取实例 [英] how to read instance from dicom dataset

查看:401
本文介绍了如何从dicom数据集中读取实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有
我是dicom图像的新手

我想通过
阅读dicom图像实例 请帮助我
问候
nitin

DicomDataSet
DicomDataSets
患者
学习
系列
机构
pixelData

下面的代码

Dear All
I am new to dicom images

i wanted to read dicom image instance through
Kindly help me out
regards
nitin

DicomDataSet
DicomDataSets
Patient
study
series
instnace
pixelData

code below

private void dataGridView1_Click(object sender, EventArgs e)
        {
            string path;
            int i1;
            i1 = dataGridView1.CurrentRow.Index;
            
      
          
            path = "D:/FilmPlus_MSAccess/bin/Debug/Images/" + dataGridView1.Rows[i1].Cells[13].Value.ToString();


            DicomDataSet dic = new DicomDataSet();
            DicomDataSets dics = new DicomDataSets();
            DicomDataSet patient = new DicomDataSet();
            DicomDataSet study = new DicomDataSet();
            DicomDataSet series = new DicomDataSet();

            DicomDataSet instance = new DicomDataSet();
            DicomDataSets pixelData = new DicomDataSets();
       }

推荐答案

DICOM格式并不是很复杂,但是可以很灵活地执行医学图像交换.您可以从这里开始: DICOM图像查看器 [
DICOM format is not really complicated, but is really flexible to enforce medical image exchange. You could start here: DICOM Image Viewer[^]


我前一段时间与DICOM合作,我认为以下包含示例代码的链接可能会有用:
获取图像

希望对您有所帮助.
I worked with DICOM a while back, I think the following link that contains a sample code might be useful:
Get image

Hope it helps.


这篇关于如何从dicom数据集中读取实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆