Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkOclImageFilter.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 #ifndef __mitkOclImageFilter_h
18 #define __mitkOclImageFilter_h
19 
20 #include "mitkOclFilter.h"
21 #include "mitkOclImage.h"
22 
23 #define FILTER_UCHAR 0
24 #define FILTER_SHORT 1
25 
26 namespace mitk
27 {
28 class OclFilter;
29 class OclImageFilter;
30 
38 class MITKOPENCL_EXPORT OclImageFilter: public OclFilter
39 {
40 public:
45  void SetInput(mitk::OclImage::Pointer image);
46 
51  void SetInput(mitk::Image::Pointer image);
52 
53 protected:
55 
56  virtual ~OclImageFilter();
57 
60 
63 };
64 }
65 #endif // __mitkOclImageFilter_h
itk::SmartPointer< Self > Pointer
DataCollection - Class to facilitate loading/accessing structured data.
The OclImageFilter is the topmost class for all filter which take images as input.
mitk::OclImage::Pointer m_Input
Superclass for all OpenCL based filter.
Definition: mitkOclFilter.h:37