Hi,<br><br>I am trying to retrieve information from a set of DICOM images. I have successfully retrieved the name of the patient using this code: <br><br><span style="font-family: courier new,monospace;">        vtkDICOMImageReader* reader = vtkDICOMImageReader::New();</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">        reader-&gt;SetDirectoryName(argv[1]);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        reader-&gt;Update();</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">        printf(&quot;Patient name %s\n&quot;, reader-&gt;GetPatientName());</span><br><br>However, I couldn&#39;t find methods for extracting other information such as KVP, X-ray Tube Current, window-level, etc. of the DICOM set. Is it not possible for vtkDICOMImageReader to look for these information? Or must I use something else?<br>
<br>Thank you.<br><a class="el" href="http://www.vtk.org/doc/nightly/html/classvtkMedicalImageReader2.html#ae261c4a58ff2eb25a62e300a5431923e"></a>