# HG changeset patch # User Sebastien Jodogne # Date 1445421206 -7200 # Node ID 5cdea1cd2071e4670824564de03ce92cf2f8e48a # Parent b6f656a0bf2c1c11233a36da1bde73630e4298ec remove display of ImageOrientationPatient and ImagePositionPatient diff -r b6f656a0bf2c -r 5cdea1cd2071 Core/DicomFormat/DicomTag.cpp --- a/Core/DicomFormat/DicomTag.cpp Wed Oct 21 11:45:51 2015 +0200 +++ b/Core/DicomFormat/DicomTag.cpp Wed Oct 21 11:53:26 2015 +0200 @@ -114,6 +114,12 @@ if (*this == DICOM_TAG_PATIENT_NAME) return "PatientName"; + if (*this == DICOM_TAG_IMAGE_POSITION_PATIENT) + return "ImagePositionPatient"; + + if (*this == DICOM_TAG_IMAGE_ORIENTATION_PATIENT) + return "ImageOrientationPatient"; + return ""; } diff -r b6f656a0bf2c -r 5cdea1cd2071 OrthancExplorer/explorer.js --- a/OrthancExplorer/explorer.js Wed Oct 21 11:45:51 2015 +0200 +++ b/OrthancExplorer/explorer.js Wed Oct 21 11:53:26 2015 +0200 @@ -236,8 +236,8 @@ ).format (patient.MainDicomTags.PatientName, FormatMainDicomTags(patient.MainDicomTags, [ - "PatientName", - "OtherPatientIDs" + "PatientName" + /*"OtherPatientIDs" */ ]), patient.Studies.length ); @@ -288,7 +288,8 @@ "SeriesTime", "Manufacturer", "ImagesInAcquisition", - "SeriesDate" + "SeriesDate", + "ImageOrientationPatient" ]), c ); @@ -305,7 +306,8 @@ "AcquisitionNumber", "InstanceNumber", "InstanceCreationDate", - "InstanceCreationTime" + "InstanceCreationTime", + "ImagePositionPatient" ]) );