Commit a1e6c2e2bcc372f7ed9c6c497bd6624bac7358f1

Authored by Paulo Henrique Junqueira Amorim
1 parent 19c511ef

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,7 +331,7 @@ class Controller():
331 patients_groups = dcm.GetDicomGroups(directory) 331 patients_groups = dcm.GetDicomGroups(directory)
332 if len(patients_groups): 332 if len(patients_groups):
333 group = dcm.SelectLargerDicomGroup(patients_groups) 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 self.CreateDicomProject(imagedata, dicom) 335 self.CreateDicomProject(imagedata, dicom)
336 # OPTION 2: ANALYZE? 336 # OPTION 2: ANALYZE?
337 else: 337 else: