You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, I did notice that once I got generating Weasis files, the TransferSynthaxUID somehow goes in there twice (presumably as during the MPR process all DICOM tags from the parent are copied over), this can bother some DICOM viewers/PACS systems. Hence I added in the blirp just below my edit above:
// check to see if the transfer synthax UID tag is present, if so, kick it out as dcm4chee adds it in
if(dcm.contains(Tag.TransferSyntaxUID))
{
dcm.remove(Tag.TransferSyntaxUID);
LOGGER.warn("Removing duplicate TransferSynthax UID");
}
The text was updated successfully, but these errors were encountered:
From this post
Also, I did notice that once I got generating Weasis files, the TransferSynthaxUID somehow goes in there twice (presumably as during the MPR process all DICOM tags from the parent are copied over), this can bother some DICOM viewers/PACS systems. Hence I added in the blirp just below my edit above:
// check to see if the transfer synthax UID tag is present, if so, kick it out as dcm4chee adds it in
if(dcm.contains(Tag.TransferSyntaxUID))
{
dcm.remove(Tag.TransferSyntaxUID);
LOGGER.warn("Removing duplicate TransferSynthax UID");
}
The text was updated successfully, but these errors were encountered: