Commit a1e6c2e2bcc372f7ed9c6c497bd6624bac7358f1
1 parent
19c511ef
Exists in
master
and in
5 other branches
FIX: Problem open DICOM with command line
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/control.py
... | ... | @@ -331,7 +331,7 @@ class Controller(): |
331 | 331 | patients_groups = dcm.GetDicomGroups(directory) |
332 | 332 | if len(patients_groups): |
333 | 333 | group = dcm.SelectLargerDicomGroup(patients_groups) |
334 | - imagedata, dicom = self.OpenDicomGroup(group, 0, gui=True) | |
334 | + imagedata, dicom = self.OpenDicomGroup(group, 0, [0,0],gui=True) | |
335 | 335 | self.CreateDicomProject(imagedata, dicom) |
336 | 336 | # OPTION 2: ANALYZE? |
337 | 337 | else: | ... | ... |