X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvImageWriter.h;h=e9a9c3825f6837c4f7a5ee17c45736bee1faab0e;hb=a4c7c3e6b24a06bfe248f935411e0136184faf97;hp=14559fd95c63a1121b555a4221871cebfb7571c8;hpb=0083c3fb2c66812489631c7551709d121de51625;p=clitk.git diff --git a/vv/vvImageWriter.h b/vv/vvImageWriter.h index 14559fd..e9a9c38 100644 --- a/vv/vvImageWriter.h +++ b/vv/vvImageWriter.h @@ -1,3 +1,20 @@ +/*========================================================================= + 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. + + 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 vvImageWriter_H #define vvImageWriter_H #include @@ -10,52 +27,52 @@ class vvImageWriter { public: - // constructor - vvImageWriter(); - ~vvImageWriter(); - - void SetOutputFileName(std::string filename); - void SetObserver(itk::Command::Pointer o) { - mUseAnObserver = true; - mObserver = o; - } - void DisableObserver() { - mUseAnObserver = false; - } - - void SetInput(vvImage::Pointer image) { - mImage = image; - } - - std::string GetLastError() { - return mLastError; - } - - //==================================================================== - // Main function - void Update() { - Update(mImage->GetNumberOfDimensions(),mImage->GetScalarTypeAsString()); - } - void Update(int dim, std::string OutputPixelType); + // constructor + vvImageWriter(); + ~vvImageWriter(); + + void SetOutputFileName(std::string filename); + void SetObserver(itk::Command::Pointer o) { + mUseAnObserver = true; + mObserver = o; + } + void DisableObserver() { + mUseAnObserver = false; + } + + void SetInput(vvImage::Pointer image) { + mImage = image; + } + + std::string GetLastError() { + return mLastError; + } + + //==================================================================== + // Main function + void Update() { + Update(mImage->GetNumberOfDimensions(),mImage->GetScalarTypeAsITKString()); + } + void Update(int dim, std::string OutputPixelType); protected: - //==================================================================== - std::string mOutputFilename; - itk::Command::Pointer mObserver; + //==================================================================== + std::string mOutputFilename; + itk::Command::Pointer mObserver; - std::string mLastError; - bool mUseAnObserver; + std::string mLastError; + bool mUseAnObserver; - //==================================================================== - template - void UpdateWithDim(std::string OutputPixelType); + //==================================================================== + template + void UpdateWithDim(std::string OutputPixelType); - //==================================================================== - template - void UpdateWithDimAndOutputPixelType(); + //==================================================================== + template + void UpdateWithDimAndOutputPixelType(); private: - vvImage::Pointer mImage; + vvImage::Pointer mImage; }; // end class vvImageWriter