SimpleITK  
DicomImagePrintTags/DicomImagePrintTags.py
1#!/usr/bin/env python
2# =========================================================================
3#
4# Copyright NumFOCUS
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0.txt
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# =========================================================================
19
20""" A SimpleITK example demonstrating how to print a DICOM image's tags. """
21
22import sys
23import SimpleITK as sitk
24
25def main(args):
26 """ A SimpleITK script that prints a DICOM image's tags. """
27 if len(args) < 2:
28 print("Usage: DicomImagePrintTags <input_file>")
29 sys.exit(1)
30
31 reader = sitk.ImageFileReader()
32
33 reader.SetFileName(args[1])
34 reader.LoadPrivateTagsOn()
35
36 reader.ReadImageInformation()
37
38 for k in reader.GetMetaDataKeys():
39 v = reader.GetMetaData(k)
40 print(f'({k}) = = "{v}"')
41
42 print(f"Image Size: {reader.GetSize()}")
43 print(f"Image PixelType: {sitk.GetPixelIDValueAsString(reader.GetPixelID())}")
44
45
46if __name__ == "__main__":
47 main(sys.argv)
Read an image file and return a SimpleITK Image.