00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date: 2009-05-12 19:56:03 +0200 (Di, 12 Mai 2009) $ 00006 Version: $Revision: 17179 $ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or https://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 00018 00019 #ifndef DiffusionImageMapper_H_HEADER_INCLUDED 00020 #define DiffusionImageMapper_H_HEADER_INCLUDED 00021 00022 #include "mitkImageMapperGL2D.h" 00023 00024 namespace mitk { 00025 00026 //##Documentation 00027 //## @brief Mapper for raw diffusion weighted images 00028 //## @ingroup Mapper 00029 template<class TPixelType> 00030 class DiffusionImageMapper : public ImageMapperGL2D 00031 { 00032 public: 00033 00034 mitkClassMacro(DiffusionImageMapper,ImageMapperGL2D); 00035 itkNewMacro(Self); 00036 00037 void GenerateData( mitk::BaseRenderer *renderer ); 00038 00039 static void SetDefaultProperties(DataNode* node, BaseRenderer* renderer = NULL, bool overwrite = false ); 00040 00041 protected: 00042 00043 DiffusionImageMapper(); 00044 virtual ~DiffusionImageMapper(); 00045 00046 }; 00047 00048 } // namespace mitk 00049 00050 #include "mitkDiffusionImageMapper.cpp" 00051 00052 00053 #endif /* COMPOSITEMAPPER_H_HEADER_INCLUDED */ 00054