forked from 541435721/myVTKPythonLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriteImage.py
39 lines (31 loc) · 1.35 KB
/
writeImage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#coding=utf8
########################################################################
### ###
### Created by Martin Genet, 2012-2016 ###
### ###
### University of California at San Francisco (UCSF), USA ###
### Swiss Federal Institute of Technology (ETH), Zurich, Switzerland ###
### École Polytechnique, Palaiseau, France ###
### ###
########################################################################
import vtk
import myVTKPythonLibrary as myVTK
########################################################################
def writeImage(
image,
filename,
verbose=1):
myVTK.myPrint(verbose, "*** writeImage: "+filename+" ***")
if ('vtk' in filename):
image_writer = vtk.vtkImageWriter()
elif ('vti' in filename):
image_writer = vtk.vtkXMLImageDataWriter()
else:
assert 0, "File must be .vtk or .vti. Aborting."
image_writer.SetFileName(filename)
if (vtk.vtkVersion.GetVTKMajorVersion() >= 6):
image_writer.SetInputData(image)
else:
image_writer.SetInput(image)
image_writer.Update()
image_writer.Write()