Hello all,<br><br>I am using the class vtkDICOMImageReader (VTK 5.1.0) to read several dicom files acquired with different CT equipments. It worked fine for more than 200 cases.<br><br>However, recently, I had trouble reading dicom files acquired with Toshiba Aquilion. The image returned by the vtkDICOMImageReader is noisy (full of grayscale dots), pretty similar to fft output. Does anyone know how to solve this?
<br><br>I&#39;m attaching one of the files acquired with Toshiba Aquilion so other developers can reproduce the problem.<br><br><a href="http://geocities.yahoo.com.br/phamorim/dicom.zip">http://geocities.yahoo.com.br/phamorim/dicom.zip
</a><br><br>The source code that illustrates the pipeline can be seen below.<br><br>Thanks in advance,<br>
<br>
Paulo Amorim<br><br>----------------------------------------------------------------------------------------------<br><div style="text-align: left;">from vtk import *<br><br>reader = vtkDICOMImageReader()<br>reader.SetFileName
(&#39;D:\\dcm_file&#39;)<br><br>viewer = vtkImageViewer()<br>viewer.SetInput(reader.GetOutput())<br>viewer.SetColorWindow(400)<br>viewer.SetColorLevel(0)<br>viewer.Render()<br></div>