]> Creatis software - clitk.git/commitdiff
Debug opening dicom with rotation matrix
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 19 Dec 2018 14:50:37 +0000 (15:50 +0100)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 19 Dec 2018 14:50:37 +0000 (15:50 +0100)
With the introduction of the choose in the Image reader to open the dicom with or without the patient coordinate system, I need to pass the value of the patient flag to take into account the transformation matrix

tools/clitkDicom2Image.cxx

index aa63b0489bd50505255c2610640e8bbb4615c70e..5c9889b2e202bd437ebbfdff346a4c1cf64098f3 100644 (file)
@@ -201,6 +201,7 @@ int main(int argc, char * argv[])
     // Read write serie
     vvImageReader::Pointer reader = vvImageReader::New();
     reader->SetInputFilenames(sorted_files);
+    reader->SetPatientCoordinateSystem(args_info.patientSystem_flag);
     reader->Update(vvImageReader::DICOM);
     if (reader->GetLastError().size() != 0) {
       std::cerr << reader->GetLastError() << std::endl;