Image data from PACS

All other questions regarding DCMTK

Moderator: Moderator Team

Post Reply
Message
Author
bdelman
Posts: 9
Joined: Tue, 2010-05-04, 15:01

Image data from PACS

#1 Post by bdelman »

While I have been able to use findscu to query PACS to get DICOM tags on the image level, most of the fields I request do not return values. Should I be able to retrieve ANY tag from an image on a PACS server, or are some tags (e.g., image slice thickness) simply not retrievable with findscu?
bdelman
Mt. Sinai School of Medicine

Michael Onken
DCMTK Developer
Posts: 2051
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

#2 Post by Michael Onken »

Hi,

only very few attributes are required for the PACS to support. Most of them are optional. A list can be found in the standard, part 4 (look after section about Query/Retrieve).

Best regards,
Michael

bdelman
Posts: 9
Joined: Tue, 2010-05-04, 15:01

#3 Post by bdelman »

Thank you. This was helpful.

Out of curiosity, do you know if PACS administrators typically have the ability to change the image tags returned? Right now I get only:

(0008,0016) UI =MRImageStorage # 26, 1 SOPClassUID
(0008,0018) UI [1.2.840.113619.2.135.2025.2080388.4450.1275565739.639] # 54, 1 SOPInstanceUID
(0008,0020) DA [20100603] # 8, 1 StudyDate
(0008,0030) TM [091721] # 6, 1 StudyTime
(0008,0050) SH [accession ] # 8, 1 AccessionNumber
(0008,0052) CS [IMAGE ] # 6, 1 QueryRetrieveLevel
(0008,0054) AE [GEPACS] # 6, 1 RetrieveAETitle
(0008,0056) CS [ONLINE] # 6, 1 InstanceAvailability
(0008,0060) CS [MR] # 2, 1 Modality
(0008,0090) PN [physician] # 18, 1 ReferringPhysiciansName
(0008,1030) LO [RM MRI BRAIN WITHOUT CONTRAST ] # 30, 1 StudyDescription
(0008,103e) LO [3-pl LOC] # 8, 1 SeriesDescription
(0010,0010) PN [patients name] # 16, 1 PatientsName
(0010,0020) LO [2491735 ] # 8, 1 PatientID
(0010,0030) DA [birthdate] # 8, 1 PatientsBirthDate
(0010,0040) CS [M ] # 2, 1 PatientsSex
(0020,000d) UI [1.2.840.113745.101000.1111000.40159.6740.10373203] # 50, 1 StudyInstanceUID
(0020,000e) UI [1.2.840.113619.2.135.2025.2080388.4450.1275565739.553] # 54, 1 SeriesInstanceUID
(0020,0010) SH [accession ] # 8, 1 StudyID
(0020,0011) IS [1 ] # 2, 1 SeriesNumber
(0020,0013) IS [21] # 2, 1 InstanceNumber
(0028,0010) US 256 # 2, 1 Rows
(0028,0011) US 256 # 2, 1 Columns
(0028,0100) US 16 # 2, 1 BitsAllocated
--------
bdelman
Mt. Sinai School of Medicine

bdelman
Posts: 9
Joined: Tue, 2010-05-04, 15:01

Syntax

#4 Post by bdelman »

In case this would be helpful, this is the syntax for tag query I am using with findscu:

findscu354v2 --study -k 0008,0052=STUDY -k 0008,0050=5033383 -k 0020,000d=1.2.840.113745.101000.1111000.40159.6740.10373203 -k 0020,000e=1.2.840.113619.2.135.2025.2080388.4450.1275565739.553 -k 0008,0018=1.2.840.113619.2.135.2025.2080388.4450.1275565739.639 -k 0008,0008 -k 0008,0016 -k 0008,0020 -k 0008,0021 -k 0008,0030 -k 0008,0031 -k 0008,0032 -k 0008,0060 -k 0008,0070 -k 0008,0080 -k 0008,0090 -k 0008,1010 -k 0008,1030 -k 0008,103e -k 0008,1070 -k 0008,1090 -k 0010,0010 -k 0010,0020 -k 0010,0030 -k 0010,0040 -k 0010,1010 -k 0010,1030 -k 0018,0010 -k 0018,0020 -k 0018,0021 -k 0018,0022 -k 0018,0023 -k 0018,0050 -k 0018,0080 -k 0018,0081 -k 0018,0082 -k 0018,0083 -k 0018,0086 -k 0018,0087 -k 0018,0088 -k 0018,0091 -k 0018,1000 -k 0018,1020 -k 0018,1030 -k 0018,1100 -k 0018,1250 -k 0018,1310 -k 0018,1312 -k 0018,1314 -k 0018,1315 -k 0018,1316 -k 0018,5100 -k 0020,0010 -k 0020,0011 -k 0020,0013 -k 0020,1041 -k 0028,0010 -k 0028,0011 -k 0028,0030 -k 0028,0100 -k 0028,0101 -k 0028,0102 -k 0028,0103 -k 0028,0106 -k 0028,0107 -k 0040,0254 -aet RD_DEV -aec GEPACS 192.124.1.65 4100
bdelman
Mt. Sinai School of Medicine

Michael Onken
DCMTK Developer
Posts: 2051
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

#5 Post by Michael Onken »

Hi,
do you know if PACS administrators typically have the ability to change the image tags returned?
Usually some tags can be configured but that totally depends on the very product. However, you often (and normall must) find information about the attributes supported by the PACS in the PACS' conformance statement. As a customer you should have that document; if not, it is usually accessible online from the vendor's homepage.

Best regards,
Michael

bdelman
Posts: 9
Joined: Tue, 2010-05-04, 15:01

#6 Post by bdelman »

Thank you. That confirms what I had thought.
bdelman
Mt. Sinai School of Medicine

anjumsk29
Posts: 28
Joined: Tue, 2011-05-17, 14:34

#7 Post by anjumsk29 »

From where can i found below for standards ?
A list can be found in the standard, part 4 (look after section about Query/Retrieve).

Michael Onken
DCMTK Developer
Posts: 2051
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

#8 Post by Michael Onken »

You can download the DICOM standard from the NEMA.

Michael

Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 1 guest