Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkTbssImageMapper.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 
18 #ifndef TbssImageMapper_H_HEADER_INCLUDED
19 #define TbssImageMapper_H_HEADER_INCLUDED
20 
21 #include "mitkImageVtkMapper2D.h"
22 #include "MitkQuantificationExports.h"
23 
24 namespace mitk {
25 
26  //##Documentation
27  //## @brief Mapper for raw diffusion weighted images
28  //## @ingroup Mapper
29 
30  class MITKQUANTIFICATION_EXPORT TbssImageMapper : public ImageVtkMapper2D
31  {
32  public:
33 
35  itkFactorylessNewMacro(Self)
36  itkCloneMacro(Self)
37 
38  void GenerateDataForRenderer( mitk::BaseRenderer *renderer ) override;
39 
40  static void SetDefaultProperties(DataNode* node, BaseRenderer* renderer = NULL, bool overwrite = false );
41 
42  protected:
43 
45  virtual ~TbssImageMapper();
46 
47  };
48 
49 } // namespace mitk
50 
51 //#include "mitkTbssImageMapper.cpp"
52 
53 
54 #endif /* TbssImageMapper_H_HEADER_INCLUDED */
55 
Mapper for raw diffusion weighted images.
Organizes the rendering process.
DataCollection - Class to facilitate loading/accessing structured data.
Mapper to resample and display 2D slices of a 3D image.
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
Class for nodes of the DataTree.
Definition: mitkDataNode.h:66