]> Creatis software - clitk.git/commitdiff
Add display matrix option
authorDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 14 Jan 2014 07:09:55 +0000 (08:09 +0100)
committerDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 14 Jan 2014 07:09:55 +0000 (08:09 +0100)
tools/clitkImageInfo.cxx
tools/clitkImageInfo.ggo

index a7c70798abc215bf4de9ab9dc357f04ae8939862..33d80cbf3551bdaae3af0b0934411d9df8e06aa6 100644 (file)
@@ -30,6 +30,7 @@
 #include "clitkIO.h"
 #include "clitkImageCommon.h"
 #include "clitkCommon.h"
+#include "vvImageReader.h"
 
 //====================================================================
 int main(int argc, char * argv[])
@@ -61,7 +62,29 @@ int main(int argc, char * argv[])
     else {
       std::cerr << "*** Warning : I could not read '" << args_info.inputs[i] << "' ***" << std::endl;
     }
-  }
+
+    if (args_info.matrix_flag) {
+      vvImageReader::Pointer r = vvImageReader::New();
+      r->SetInputFilename(args_info.inputs[i]);
+      r->Update(vvImageReader::IMAGE);
+      vtkMatrix4x4 * m = r->GetOutput()->GetTransform()[0]->GetMatrix();
+      for(int i=0; i<4; i++) {
+        for(int j=0; j<4; j++)
+          std::cout << m->GetElement(i,j) << " ";
+        std::cout << std::endl;
+      }
+
+      // inverse
+      m->Invert();
+      for(int i=0; i<4; i++) {
+        for(int j=0; j<4; j++)
+          std::cout << m->GetElement(i,j) << " ";
+        std::cout << std::endl;
+      }
+
+    }
+  } // end for
+
 
   // this is the end my friend
   return 0;
index 53bdc05f66518eff9940be1cb1b9701503479853..36283d16a28efc39693c1de6131a18355a54757c 100644 (file)
@@ -7,4 +7,4 @@ option "config"          - "Config file"                 string            no
 option "long"           l "Long line output (1 or 2)"   int default = "1" no
 option "verbose"        v "Same as -l 1"                flag off
 option "name"           n "Display filename"            flag off
-
+option "matrix"                 m "Display matrix"              flag off