Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
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

C#
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();
       }
Posted
Updated 20-Jul-12 0:19am
v2

DICOM format is not really complicated, but is really flexible to enforce medical image exchange. You could start here: DICOM Image Viewer[^]
 
Share this answer
 
Comments
Member 8893861 11-Sep-12 3:58am    
Thank u very much
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.
 
Share this answer
 
Comments
Member 8893861 11-Sep-12 3:57am    
Thank u Mathew .

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900