X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkImageCommon.h;h=d3fefb3228b153928429a1bbb2c3e486f1feec7b;hb=5dc155f99385ef56e5c80dbcc0b7f56760629ade;hp=11ddaba67441645957ac8f1aa2aa4e13917626fc;hpb=0083c3fb2c66812489631c7551709d121de51625;p=clitk.git diff --git a/common/clitkImageCommon.h b/common/clitkImageCommon.h index 11ddaba..d3fefb3 100644 --- a/common/clitkImageCommon.h +++ b/common/clitkImageCommon.h @@ -1,14 +1,22 @@ -#ifndef CLITKIMAGECOMMON_H -#define CLITKIMAGECOMMON_H -/** - ------------------------------------------------------------------- - * @file clitkImageCommon.h - * @author David Sarrut - * @date 07 Sep 2007 11:30:10 +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + Authors belong to: + - University of LYON http://www.universite-lyon.fr/ + - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. - * @brief + It is distributed under dual licence - -------------------------------------------------------------------*/ + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +======================================================================-====*/ +#ifndef CLITKIMAGECOMMON_H +#define CLITKIMAGECOMMON_H // clitk #include "clitkCommon.h" @@ -18,8 +26,8 @@ #include "itkImageFileReader.h" #include "itkImageSeriesReader.h" #include "itkImageFileWriter.h" -#include "gdcmFile.h" -#include "gdcmFileHelper.h" +//#include "gdcmFile.h" +//#include "gdcmFileHelper.h" namespace clitk { @@ -35,6 +43,11 @@ namespace clitk { 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); + template + typename ImageType::Pointer NewImageLike(const typename ImageType::Pointer input, bool allocate=true); + + template + void CopyValues(const typename ImageType::Pointer input, typename ImageType::Pointer output); //-------------------------------------------------------------------- // New Image creation (with allocation) @@ -68,7 +81,7 @@ namespace clitk { //-------------------------------------------------------------------- // Read a dicom header - gdcm::File * readDicomHeader(const std::string & filename, const bool verbose=false); +// gdcm::File * readDicomHeader(const std::string & filename, const bool verbose=false); //-------------------------------------------------------------------- template @@ -81,6 +94,24 @@ namespace clitk { std::map > & mapOfLabelsAndWeights); + //-------------------------------------------------------------------- + template + bool HaveSameSizeAndSpacing(typename ImageType1::ConstPointer A, + typename ImageType2::ConstPointer B); + + template + bool HaveSameSizeAndSpacing(typename ImageType1::Pointer A, + typename ImageType2::Pointer B); + + //-------------------------------------------------------------------- + template + bool HaveSameSpacing(typename ImageType1::ConstPointer A, + typename ImageType2::ConstPointer B); + + template + bool HaveSameSpacing(typename ImageType1::Pointer A, + typename ImageType2::Pointer B); + #include "clitkImageCommon.txx" } // end namespace