/*
- # ---------------------------------------------------------------------
- #
- # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
- # pour la Santé)
- # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
- # Previous Authors : Laurent Guigues, Jean-Pierre Roux
- # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
- #
- # This software is governed by the CeCILL-B license under French law and
- # abiding by the rules of distribution of free software. You can use,
- # modify and/ or redistribute the software under the terms of the CeCILL-B
- # license as circulated by CEA, CNRS and INRIA at the following URL
- # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
- # or in the file LICENSE.txt.
- #
- # As a counterpart to the access to the source code and rights to copy,
- # modify and redistribute granted by the license, users are provided only
- # with a limited warranty and the software's author, the holder of the
- # economic rights, and the successive licensors have only limited
- # liability.
- #
- # The fact that you are presently reading this means that you have had
- # knowledge of the CeCILL-B license and that you accept its terms.
- # ------------------------------------------------------------------------
+ # ---------------------------------------------------------------------
+ #
+ # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+ # pour la Santé)
+ # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+ # Previous Authors : Laurent Guigues, Jean-Pierre Roux
+ # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+ #
+ # This software is governed by the CeCILL-B license under French law and
+ # abiding by the rules of distribution of free software. You can use,
+ # modify and/ or redistribute the software under the terms of the CeCILL-B
+ # license as circulated by CEA, CNRS and INRIA at the following URL
+ # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+ # or in the file LICENSE.txt.
+ #
+ # As a counterpart to the access to the source code and rights to copy,
+ # modify and redistribute granted by the license, users are provided only
+ # with a limited warranty and the software's author, the holder of the
+ # economic rights, and the successive licensors have only limited
+ # liability.
+ #
+ # The fact that you are presently reading this means that you have had
+ # knowledge of the CeCILL-B license and that you accept its terms.
+ # ------------------------------------------------------------------------
*/
//=====
// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
#include "bbcreaImageIOItkImagesChooserDialogBox.h"
#include "bbcreaImageIOPackage.h"
+// -------------------------------------------------------------------------
+// LFV: avoid itk::Concept check on 4d or superior images
+#define BBCREAIMAGEIO_ChooserDlg_Template( t, ty, di ) \
+ if( t == typeid( itk::Image< ty, di > ) ) \
+ { \
+ this->Export< itk::Image< ty, di > >( ); \
+ this->ExportVTK< itk::Image< ty, di > >( ); \
+ }
+// -------------------------------------------------------------------------
+
namespace bbcreaImageIO
{
dlg->ShowModal();
bbtk::TypeInfo typ = bbitk::GetITKImagePtrTypeInfoFromPixelTypeInfoAndDimension(*dlg->getTypes().front(), dlg->getDims().front());
- BBTK_TEMPLATE_ITK_IMAGE_SWITCH(typ, Export);
- BBTK_TEMPLATE_ITK_IMAGE_SWITCH(typ, ExportVTK);
+
+ BBCREAIMAGEIO_ChooserDlg_Template( typ, char, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, short, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, int, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, long, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, float, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, double, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned char, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned short, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned int, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned long, 1 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, char, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, short, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, int, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, long, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, float, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, double, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned char, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned short, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned int, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned long, 2 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, char, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, short, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, int, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, long, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, float, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, double, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned char, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned short, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned int, 3 )
+ else BBCREAIMAGEIO_ChooserDlg_Template( typ, unsigned long, 3 );
+
+
+ /* Deprecated
+ BBTK_TEMPLATE_ITK_IMAGE_SWITCH(typ, Export);
+ BBTK_TEMPLATE_ITK_IMAGE_SWITCH(typ, ExportVTK);
+ */
delete dlg;
}
#include "creaImageIOWxAnySimpleDlg.h"
#include "creaImageIOWxGimmickReaderDialog.h"
-#include <itkAnalyzeImageIO.h>
+
+#if ITK_VERSION_MAJOR < 4 // : WARNING: deprecated in ITK 4.0
+# include <itkAnalyzeImageIO.h>
+# include <itkDICOMSeriesFileNames.h>
+#else // ITK_VERSION_MAJOR < 4
+# include <itkGDCMSeriesFileNames.h>
+#endif // ITK_VERSION_MAJOR < 4
+
#include <itkImageFileReader.h>
#include <itkImageSeriesReader.h>
#include <itkImage.h>
#include <itkImageSeriesWriter.h>
#include <itkGDCMImageIO.h>
-#include <itkDICOMSeriesFileNames.h>
#include <itkNumericSeriesFileNames.h>
#include <itkVectorImage.h>
#include <itkMetaImageIO.h>
{
typedef itk::Image<short,3> TImage;
typedef itk::GDCMImageIO GDCMType;
+#if ITK_VERSION_MAJOR < 4
typedef itk::DICOMSeriesFileNames dicnames;
+#else // ITK_VERSION_MAJOR < 4
+ typedef itk::GDCMSeriesFileNames dicnames;
+#endif // ITK_VERSION_MAJOR < 4
GDCMType::Pointer gdcmIO = GDCMType::New();
dicnames::Pointer generator = dicnames::New();