Hi,<br>
<br>
I am trying to change the header of a dicom image on cygwin. I have <br>
no problem doing it on Linux using &quot;DicomImageReadChangeHeaderWrite&quot;.<br>
For example, to change the name of the patient, I just type<br>
<br>
<div style="margin-left: 40px;">DicomImageReadChangeHeaderWrite Image.dcm ImageChanged.dcm 0010\|0010 NewName<br>
</div>
<br>
and it works perfectly (\| is needed for him to recognize &quot;|&quot;). On cygwin, I didn't <br>
find any way to make him understand the character &quot;|&quot;. Then I did look into the<br>
code and simply wrote:<br>
&nbsp;<br>
<div style="margin-left: 40px;">&nbsp;itk::EncapsulateMetaData&lt;std::string&gt;( dictionary, &quot;0010|0010&quot;, &quot;NewName&quot; );<br>
<br>
</div>
Again, it works on Linux, but not on cygwin (and I really need it to work on cygwin...)<br>
Does anyone has an idea of what I could do?<br>
Is there an other way to specify the entryId?<br>
<br>
Thanks!<br>
Olivier<br>