Commit 6eacca2e9609b5d7b1c2075c246c921c2b05dc7b
1 parent
d1da60ca
Exists in
master
and in
68 other branches
ENH: Comment - need testing
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
invesalius/data/imagedata_utils.py
| ... | ... | @@ -168,6 +168,7 @@ def Export(imagedata, filename, bin=False): |
| 168 | 168 | def Import(filename): |
| 169 | 169 | reader = vtk.vtkXMLImageDataReader() |
| 170 | 170 | reader.SetFileName(filename) |
| 171 | + # TODO: Check if the code bellow is necessary | |
| 171 | 172 | #reader.WholeSlicesOn() |
| 172 | 173 | reader.Update() |
| 173 | 174 | return reader.GetOutput() | ... | ... |