GDCM
2.2.0
|
00001 /*========================================================================= 00002 00003 Program: GDCM (Grassroots DICOM). A DICOM library 00004 00005 Copyright (c) 2006-2011 Mathieu Malaterre 00006 All rights reserved. 00007 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details. 00008 00009 This software is distributed WITHOUT ANY WARRANTY; without even 00010 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00011 PURPOSE. See the above copyright notice for more information. 00012 00013 =========================================================================*/ 00014 00015 #ifndef GDCMIMAGECONVERTER_H 00016 #define GDCMIMAGECONVERTER_H 00017 00018 #include "gdcmTypes.h" 00019 00020 namespace gdcm 00021 { 00022 00023 class Image; 00033 class GDCM_EXPORT ImageConverter 00034 { 00035 public: 00036 ImageConverter(); 00037 ~ImageConverter(); 00038 00039 void SetInput(Image const &input); 00040 const Image& GetOuput() const; 00041 00042 void Convert(); 00043 00044 private: 00045 Image *Input; 00046 Image *Output; 00047 }; 00048 00049 } // end namespace gdcm 00050 00051 #endif //GDCMIMAGECONVERTER_H