#ifndef CLITKIMAGECOMMON_H #define CLITKIMAGECOMMON_H /** ------------------------------------------------------------------- * @file clitkImageCommon.h * @author David Sarrut * @date 07 Sep 2007 11:30:10 * @brief -------------------------------------------------------------------*/ // clitk #include "clitkCommon.h" // itk #include "itkImage.h" #include "itkImageFileReader.h" #include "itkImageSeriesReader.h" #include "itkImageFileWriter.h" #include "gdcmFile.h" #include "gdcmFileHelper.h" namespace clitk { //-------------------------------------------------------------------- // New Image creation (no allocation) template typename itk::Image::Pointer NewImage1D(int size, double spacing=1.0); template typename itk::Image::Pointer NewImage2D(int sx, int sy, double dx=1.0, double dy=1.0); template typename itk::Image::Pointer NewImage3D(int sx, int sy, int sz, double dx=1.0, double dy=1.0, double dz=1.0); template typename itk::Image::Pointer NewImage4D(int sx, int sy, int sz, int st, double dx=1.0, double dy=1.0, double dz=1.0, double dt=1.0); //-------------------------------------------------------------------- // New Image creation (with allocation) //-------------------------------------------------------------------- // Read an Write image // template // typename ImageType::Pointer ReadImage(const std::string & filename, const bool verbose=false); template typename ImageType::Pointer readImage(const std::string & filename, const bool verbose=false); template typename ImageType::Pointer readImage(const std::vector & filenames, const bool verbose=false); template void writeImage(const typename ImageType::Pointer image, const std::string & filename, const bool verbose=false); // template // void writeConstImage(const typename ImageType::ConstPointer image, const std::string & filename, const bool verbose=false); template void writeImage(const ImageType* image, const std::string & filename, const bool verbose=false); //-------------------------------------------------------------------- // Read/print image header itk::ImageIOBase::Pointer readImageHeader(const std::string & filename,bool exit_on_error=true); void printImageHeader(itk::ImageIOBase::Pointer header, std::ostream & os, const int level=0); //-------------------------------------------------------------------- // Determine pixetype and dimension of an image file void ReadImageDimensionAndPixelType(const std::string & filename, int & dimension, std::string & pixeType); //-------------------------------------------------------------------- // Determine pixetype, dimension and number of pixel components of an image file void ReadImageDimensionAndPixelType(const std::string & filename, int & dimension, std::string & pixeType, int & components); //-------------------------------------------------------------------- // Read a dicom header gdcm::File * readDicomHeader(const std::string & filename, const bool verbose=false); //-------------------------------------------------------------------- template int ComputeHowManyDifferentIntensity(const typename ImageType::Pointer & image, std::vector & listOfIntensities); template void ComputeWeightsOfEachClasses(const typename InputImageType::Pointer & input, const typename MaskImageType::Pointer & mask, const std::vector & listOfIntensities, std::map > & mapOfLabelsAndWeights); #include "clitkImageCommon.txx" } // end namespace #endif /* end #define CLITKIMAGECOMMON_H */