diff OrthancStone/UnitTestsSources/SortedFramesCreateTest.py @ 1877:a2955abe4c2e

skeleton for the RenderingPlugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 12 Jan 2022 08:23:38 +0100
parents UnitTestsSources/SortedFramesCreateTest.py@7053b8a0aaec
children 07964689cb0b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/OrthancStone/UnitTestsSources/SortedFramesCreateTest.py	Wed Jan 12 08:23:38 2022 +0100
@@ -0,0 +1,87 @@
+#!/usr/bin/env python
+
+# Stone of Orthanc
+# Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
+# Department, University Hospital of Liege, Belgium
+# Copyright (C) 2017-2022 Osimis S.A., Belgium
+# Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
+#
+# This program is free software: you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public License
+# as published by the Free Software Foundation, either version 3 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/>.
+
+
+import pprint
+import requests
+import sys
+
+if len(sys.argv) != 2:
+    print('Usage: %s [Orthanc series ID]' % sys.argv[0])
+    print('Example: %s 4d04593b-953ced51-87e93f11-ae4cf03c-25defdcd | xclip -selection c -t text/plain' % sys.argv[0])
+    exit(-1)
+
+SERIES = sys.argv[1]
+
+r = requests.get('http://localhost:8042/series/%s/study' % SERIES)
+r.raise_for_status()
+print('  // From patient %s' % r.json() ['PatientMainDicomTags']['PatientName'])
+
+r = requests.get('http://localhost:8042/series/%s' % SERIES)
+r.raise_for_status()
+
+first = True
+
+for instance in r.json() ['Instances']:
+    tags = requests.get('http://localhost:8042/instances/%s/tags?short' % instance)
+    tags.raise_for_status()
+
+    if first:
+        print('''
+  Orthanc::DicomMap tags;
+  tags.SetValue(Orthanc::DICOM_TAG_STUDY_INSTANCE_UID, "%s", false);
+  tags.SetValue(Orthanc::DICOM_TAG_SERIES_INSTANCE_UID, "%s", false);    
+  OrthancStone::SortedFrames f;
+''' % (tags.json() ['0020,000d'], tags.json() ['0020,000e']))
+        first = False
+   
+    print('  tags.SetValue(Orthanc::DICOM_TAG_SOP_INSTANCE_UID, "%s", false);' % instance)
+    
+    if '0020,0032' in tags.json():
+        print('  tags.SetValue(Orthanc::DICOM_TAG_IMAGE_POSITION_PATIENT, "%s", false);' %
+              tags.json() ['0020,0032'].replace('\\', '\\\\'))
+    
+    if '0020,0037' in tags.json():
+        print('  tags.SetValue(Orthanc::DICOM_TAG_IMAGE_ORIENTATION_PATIENT, "%s", false);' %
+              tags.json() ['0020,0037'].replace('\\', '\\\\'))
+
+    if '0020,0013' in tags.json():
+        print('  tags.SetValue(Orthanc::DICOM_TAG_INSTANCE_NUMBER, "%s", false);' %
+              tags.json() ['0020,0013'].replace('\\', '\\\\'))
+
+    if '0054,1330' in tags.json():
+        print('  tags.SetValue(Orthanc::DICOM_TAG_IMAGE_INDEX, "%s", false);' %
+              tags.json() ['0054,1330'].replace('\\', '\\\\'))
+
+    print('  f.AddInstance(tags);')
+    
+print('  f.Sort();')
+
+r = requests.get('http://localhost:8042/series/%s/ordered-slices' % SERIES)
+r.raise_for_status()
+slices = r.json() ['SlicesShort']
+
+print('  ASSERT_EQ(%du, f.GetFramesCount());' % len(slices))
+
+for i in range(len(slices)):
+    print('  ASSERT_EQ(f.GetInstanceOfFrame(%d).GetSopInstanceUid(), "%s");' % (i, slices[i][0]))
+