SimpleITK  2.0.0
ImageIOSelection/ImageIOSelection.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 from __future__ import print_function
21 
22 import sys
23 import SimpleITK as sitk
24 
25 if len(sys.argv) < 2:
26  print('Wrong number of arguments.', file=sys.stderr)
27  print('Usage: ' + __file__ + ' image_file_name', file=sys.stderr)
28  sys.exit(1)
29 
30 # Find out which image IOs are supported
31 file_reader = sitk.ImageFileReader()
32 image_ios_tuple = file_reader.GetRegisteredImageIOs()
33 print("The supported image IOs are: " + str(image_ios_tuple))
34 print('-' * 20)
35 
36 # Another option is to just print the reader and see which
37 # IOs are supported
38 print(file_reader)
39 print('-' * 20)
40 
41 # Force the use of a specific IO. If the IO doesn't support
42 # reading the image type it will throw an exception.
43 file_reader.SetImageIO('PNGImageIO')
44 file_reader.SetFileName(sys.argv[1])
45 try:
46  image = file_reader.Execute()
47  print('Read image: ' + sys.argv[1])
48 except Exception as err:
49  print('Reading failed: ', err)
50  sys.exit(1)
51 
52 sys.exit(0)
itk::simple::ImageFileReader
Read an image file and return a SimpleITK Image.
Definition: sitkImageFileReader.h:60