From: Frederic Cervenansky Date: Mon, 9 May 2011 12:21:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=creaImageIO.git;a=commitdiff_plain;h=d1137ad9eed009a0bf934c0b47bf543fc211f2bd *** empty log message *** --- diff --git a/appli/TestWxItkView/CMakeLists.txt b/appli/TestWxItkView/CMakeLists.txt new file mode 100644 index 0000000..b4d6e70 --- /dev/null +++ b/appli/TestWxItkView/CMakeLists.txt @@ -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 index 0000000..60898b9 --- /dev/null +++ b/appli/TestWxItkView/main.cxx @@ -0,0 +1,76 @@ +#include +#include +#include +#include +#include +#include + +#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 vtktest; + std::vector exts; + vtkImageData* im = vtkImageData::New(); + if(ITK_DIM_TO_TEST == 3) + { + + typedef itk::Image ImageType; + creaImageIO::WxISimpleDlg x(0); + // files extension to take in count + exts.push_back(".hdr"); + x.setExts(exts); + x.ShowModal(); + // get itkImage vector + std::vector 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 ImageType; + creaImageIO::WxISimpleDlg x(0); + x.ShowModal(); + // get itkImage vector + std::vector 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; +} + +