]> Creatis software - creaImageIO.git/commitdiff
*** empty log message ***
authorFrederic Cervenansky <Frederic.Cervenansky@creatis.insa-lyon.fr>
Mon, 9 May 2011 12:21:49 +0000 (12:21 +0000)
committerFrederic Cervenansky <Frederic.Cervenansky@creatis.insa-lyon.fr>
Mon, 9 May 2011 12:21:49 +0000 (12:21 +0000)
appli/TestWxItkView/CMakeLists.txt [new file with mode: 0644]
appli/TestWxItkView/main.cxx [new file with mode: 0644]

diff --git a/appli/TestWxItkView/CMakeLists.txt b/appli/TestWxItkView/CMakeLists.txt
new file mode 100644 (file)
index 0000000..b4d6e70
--- /dev/null
@@ -0,0 +1,11 @@
+
+IF(WIN32)
+  ADD_EXECUTABLE(creaGimmickItkApp WIN32 main)  
+  SET_TARGET_PROPERTIES(creaGimmickItkApp PROPERTIES LINK_FLAGS /subsystem:console )
+ELSE(WIN32)
+  ADD_EXECUTABLE(creaGimmickItkApp MACOSX_BUNDLE main)
+ENDIF(WIN32)
+
+TARGET_LINK_LIBRARIES(         creaGimmickItkApp creaImageIO  )
+
+INSTALL_TARGETS(/bin/ creaGimmickItkApp )
diff --git a/appli/TestWxItkView/main.cxx b/appli/TestWxItkView/main.cxx
new file mode 100644 (file)
index 0000000..60898b9
--- /dev/null
@@ -0,0 +1,76 @@
+#include <creaImageIOSystem.h>
+#include <creaWx.h>
+#include <creaImageIOWxISimpleDlg.h>
+#include <creaImageIOWxISimpleDlg.hpp>
+#include <itkImageBase.h>
+#include <creaVtkBasicSlicer.h>
+
+#define ITK_DIM_TO_TEST 4
+
+// Just to test the selection of file(s), directory or from creaImageIO database.
+class myApp : public wxApp
+{
+public:
+  bool OnInit( );
+  int  OnExit() { return true; }
+};
+
+IMPLEMENT_APP(myApp);
+
+CREA_WXMAIN_WITH_CONSOLE
+
+bool myApp::OnInit( )
+{
+  wxApp::OnInit();
+#ifdef __WXGTK__
+  //See http://www.wxwindows.org/faqgtk.htm#locale
+  setlocale(LC_NUMERIC, "C");
+#endif
+   wxInitAllImageHandlers();
+   std::vector <vtkImageData*> vtktest;
+   std::vector<std::string> exts;
+   vtkImageData* im = vtkImageData::New();
+  if(ITK_DIM_TO_TEST == 3)
+   {
+   
+          typedef itk::Image<short, ITK_DIM_TO_TEST >  ImageType;
+          creaImageIO::WxISimpleDlg<ImageType> x(0);
+          // files extension to take in count
+       exts.push_back(".hdr");
+       x.setExts(exts);
+       x.ShowModal();
+          // get itkImage vector
+          std::vector <ImageType::Pointer> test = x.getImagesSelected();
+          // convert 3D itk to 3D vtk
+          x.split3Din3Dvtk();
+          vtktest = x.getVtkImagesSelected();
+         if(vtktest.size() >0)
+         {
+               crea::VtkBasicSlicer(vtktest.front());
+         }
+  }
+  else if (ITK_DIM_TO_TEST == 4)
+  {
+         typedef itk::Image<short, ITK_DIM_TO_TEST >  ImageType;
+      creaImageIO::WxISimpleDlg<ImageType> x(0);
+         x.ShowModal();
+         // get itkImage vector
+         std::vector <ImageType::Pointer> test = x.getImagesSelected();
+         // convert 4D itk to 3D vtk  with a directory to create tempory vtk files.
+      x.split4Din3Dvtk("d:/temp2");
+         // get vtkImageData* vector
+         vtktest = x.getVtkImagesSelected();
+         if(vtktest.size() >0)
+         {
+               crea::VtkBasicSlicer(vtktest.front());
+         }
+       }
+   
+  else{}
+
+  
+   return false;
+}
+
+