<div>Matthieu,</div>
<div>&nbsp;</div>
<div>I notice that the code in ITK&#39;s version of DICOMParser just &quot;break&quot;&#39;s for both VR_FL and VR_FD. No swapping is done. I have more confidence in the ITK implementation than I do in the VTK implementation. Note though, we recommend using GDCM in ITK. DICOMParser remains for backward compatibility.
</div>
<div>&nbsp;</div>
<div>Bill<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 7/10/07, <b class="gmail_sendername">Mathieu Coursolle</b> &lt;<a href="mailto:mcoursolle@rogue-research.com">mcoursolle@rogue-research.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hi,<br><br>You were right, TestSobel2D started to fail after the 2006/05/03 change<br>of the DICOMAppHelper.cxx
 file. The change was good, but it made the spacing<br>values to be set individually. They were set to the same value before. It then<br>made visible a problem that was already there.<br><br>In fact, the string we want to convert is the following:
<br><br>007.812500E-01\07.812500E-01<br><br>On little endians, it is read as follow:<br><br>this-&gt;PixelSpacing[0] = 0.78125<br>this-&gt;PixelSpacing[1] = 0.78125<br><br>However, on Big endian, the string is read as follow:
<br><br>.7005218-E000\1018.7005210-E<br><br>which produces:<br><br>this-&gt;PixelSpacing[0] = 0.7005218<br>this-&gt;PixelSpacing[1] = 1018.7005210<br><br>You&#39;ll notice that the Big endian version of the string<br>is swapped by blocks of 4 bytes.
<br><br>In the ReadNextRecord method of the DICOMParser class, the Pixel spacing tag<br>is set to be swapped.<br><br>That tag being a string, does it really need to be swapped? Is the<br>spacing tag always an<br>ASCII string in the DICOM files?
<br><br>If I comment the VR_FL case from the switch case statement which<br>determine what need<br>to be swapped, TestSobel2D then pass on both intel and PPC.<br><br>I attached a patch, for which all tests passed on both intel and PPC
<br>with TCL enabled.<br>(Except for TestImageTracerWidget on my machine, but this is some other<br>issue).<br><br>Thanks.<br><br>Mathieu<br><br><br>&gt;On 7/9/07, Sebastien BARRE &lt;<a href="mailto:sebastien.barre@kitware.com">
sebastien.barre@kitware.com</a>&gt; wrote:<br>&gt;&gt;<br>&gt;&gt;&nbsp;&nbsp;At 7/6/2007 07:59 PM, Bill Lorensen wrote:<br>&gt;&gt;<br>&gt;&gt; I see a change to DICOMAppHelper.cxx<br>&gt;&gt; <a href="http://public.kitware.com/cgi-bin/viewcvs.cgi/Utilities/DICOMParser/">
http://public.kitware.com/cgi-bin/viewcvs.cgi/Utilities/DICOMParser/</a><br>&gt;DICOMAppHelper.cxx.diff?cvsroot=VTK&amp;r1=1.25&amp;r2=1.26<br>&gt;&gt;<br>&gt;<br>&gt;Sean, can you confirm that applying the reversed (patch -R) patch you
<br>&gt;get a clean dashboard ?<br>&gt;<br>&gt;&gt;&nbsp;&nbsp;Now to be honest I think the DICOM code in VTK should be yanked and<br>&gt;&gt; replaced with support for GDCM. The DICOM protocol is too complex and too<br>&gt;&gt; time consuming to be maintained in different libraries any longer, and GDCM
<br>&gt;&gt; has been used in ITK (or internally at Kitware) with good success so<br>far, if<br>&gt;&gt; I&#39;m correct.<br>&gt;<br>&gt;GDCM is a pretty good choice indeed ;-P<br>&gt;As a side note, it took me quite a while to get GDCM to compile on the
<br>&gt;mulitple compilers supported by ITK. I think it will be an even<br>&gt;greater challenge to get it supported by all compilers VTK supports...<br>&gt;Not mentionning the jpeg8/12/16/j2k library addition<br>&gt;<br>
&gt;--<br>&gt;Mathieu<br>&gt;_______________________________________________<br>&gt;vtk-developers mailing list<br>&gt;<a href="mailto:vtk-developers@vtk.org">vtk-developers@vtk.org</a><br>&gt;<a href="http://www.vtk.org/mailman/listinfo/vtk-developers">
http://www.vtk.org/mailman/listinfo/vtk-developers</a><br>&gt;<br><br>_______________________________________________<br>vtk-developers mailing list<br><a href="mailto:vtk-developers@vtk.org">vtk-developers@vtk.org</a><br>
<a href="http://www.vtk.org/mailman/listinfo/vtk-developers">http://www.vtk.org/mailman/listinfo/vtk-developers</a><br><br><br></blockquote></div><br>