<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;"><span>Hi,
</span><br>
<br>
<span>I'm wondering if there is a procedure for adding a <span class="bold highlight search-highlight">
dicom</span> <span class="bold highlight search-highlight">dictionary</span> to those that are used by the GDCMImageIO, or a way to parse a private field by furnishing the pertinent info to the right method.  I'm trying to access the field 0119,1030, which
 is pretty much a 3d version of ImageOrientationPatient.  I have no problem seeing the field in a dcmdump of an image that contains the field, but am having trouble getting my program to handle the field properly.  Here's what a dcmdump of the field looks like:
</span><br>
<br>
<span>cbl-mbp-3369:Release rharnish$ dcmdump dce.dcm | grep -i imageor </span><br>
<span>(0020,0037) DS [-1\-0\0\-0\-1\0]                        #  16, 6 ImageOrientationPatient
</span><br>
<span>cbl-mbp-3369:Release rharnish$ dcmdump dce.dcm | grep -i 0119,1030 </span><br>
<span>(0119,1030) DS [-1\-0\0\-0\-1\0\0\0\1]                  #  22, 9 Unknown Tag & Data
</span><br>
<span>cbl-mbp-3369:Release rharnish$ </span><br>
<br>
<span>This is a section of code that tires to parse the field: </span><br>
<br>
<span>    std::string tagkey = "0119|1030"; </span><br>
<span>//    std::string tagkey = "0020|0037"; </span><br>
<span>    std::string labelId; </span><br>
<span>    std::string value; </span><br>
<span>    </span><br>
<br>
<span>    if( gdcmImageIO->GetValueFromTag(tagkey, value) ) </span><br>
<span>    { </span><br>
<span>        std::cout << tagkey << ":  "; </span><br>
<span>        std::cout << value << std::endl; </span><br>
<span>    } </span><br>
<br>
<span>Here's the output with     std::string tagkey = "0119|1030";: </span><br>
<br>
<span>0119|1030:  LTFcLTBcMFwtMFwtMVwwXDBcMFwxIA== </span><br>
<br>
<br>
<span>Here's the output with     std::string tagkey = "0020|0037"; </span><br>
<br>
<span>0020|0037:  -1\-0\0\-0\-1\0 </span><br>
<br>
<span>Any suggestions would be much appreciated. </span></div>
</body>
</html>