ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkGPUImage.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 
19 #ifndef itkGPUImage_h
20 #define itkGPUImage_h
21 
22 #include "itkImage.h"
23 #include "itkGPUImageDataManager.h"
24 #include "itkVersion.h"
25 #include "itkObjectFactoryBase.h"
26 
27 namespace itk
28 {
39 template <typename TPixel, unsigned int VImageDimension = 2>
40 class ITK_TEMPLATE_EXPORT GPUImage : public Image<TPixel,VImageDimension>
41 {
42 public:
43  typedef GPUImage Self;
48 
49  itkNewMacro(Self);
50 
51  itkTypeMacro(GPUImage, Image);
52 
53  itkStaticConstMacro(ImageDimension, unsigned int, VImageDimension);
54 
55  typedef typename Superclass::PixelType PixelType;
56  typedef typename Superclass::ValueType ValueType;
57  typedef typename Superclass::InternalPixelType InternalPixelType;
58  typedef typename Superclass::IOPixelType IOPixelType;
60  typedef typename Superclass::SpacingType SpacingType;
61  typedef typename Superclass::PixelContainer PixelContainer;
62  typedef typename Superclass::SizeType SizeType;
63  typedef typename Superclass::IndexType IndexType;
64  typedef typename Superclass::OffsetType OffsetType;
65  typedef typename Superclass::RegionType RegionType;
68  typedef typename Superclass::AccessorType AccessorType;
69 
71 
73  //typedef typename Superclass::NeighborhoodAccessorFunctorType
74  // NeighborhoodAccessorFunctorType;
75 
76  //
77  // Allocate CPU and GPU memory space
78  //
79  virtual void Allocate(bool initialize=false) ITK_OVERRIDE;
80 
81  virtual void Initialize() ITK_OVERRIDE;
82 
83  void FillBuffer(const TPixel & value);
84 
85  void SetPixel(const IndexType & index, const TPixel & value);
86 
87  const TPixel & GetPixel(const IndexType & index) const;
88 
89  TPixel & GetPixel(const IndexType & index);
90 
91  const TPixel & operator[](const IndexType & index) const;
92 
93  TPixel & operator[](const IndexType & index);
94 
96  void UpdateBuffers();
97 
98  //
99  // Get CPU buffer pointer
100  //
101  TPixel* GetBufferPointer() ITK_OVERRIDE;
102 
103  const TPixel * GetBufferPointer() const ITK_OVERRIDE;
104 
106  AccessorType GetPixelAccessor(void)
107  {
108  m_DataManager->SetGPUBufferDirty();
109  return Superclass::GetPixelAccessor();
110  }
112 
114  const AccessorType GetPixelAccessor(void) const
115  {
116  m_DataManager->UpdateCPUBuffer();
117  return Superclass::GetPixelAccessor();
118  }
120 
123  {
124  m_DataManager->SetGPUBufferDirty();
125  //return Superclass::GetNeighborhoodAccessor();
127  }
129 
132  {
133  m_DataManager->UpdateCPUBuffer();
134  //return Superclass::GetNeighborhoodAccessor();
136  }
138 
139  void SetPixelContainer(PixelContainer *container);
140 
143  {
144  m_DataManager->SetGPUBufferDirty(); return Superclass::GetPixelContainer();
145  }
146 
148  {
149  m_DataManager->UpdateCPUBuffer();
150  return Superclass::GetPixelContainer();
151  }
152 
153  void SetCurrentCommandQueue( int queueid )
154  {
155  m_DataManager->SetCurrentCommandQueue( queueid );
156  }
157 
159  return m_DataManager->GetCurrentCommandQueueID();
160  }
161 
162  itkGetModifiableObjectMacro(DataManager, GPUImageDataManager< GPUImage >);
163  GPUDataManager * GetGPUDataManager();
164 
165  /* Override DataHasBeenGenerated() in DataObject class.
166  * We need this because CPU time stamp is always bigger
167  * than GPU's. That is because Modified() is called at
168  * the end of each filter in the pipeline so although we
169  * increment GPU's time stamp in GPUGenerateData() the
170  * CPU's time stamp will be increased after that.
171  */
172  void DataHasBeenGenerated() ITK_OVERRIDE
173  {
174  Superclass::DataHasBeenGenerated();
175  if( m_DataManager->IsCPUBufferDirty() )
176  {
177  m_DataManager->Modified();
178  }
179  }
180 
182  virtual void Graft(const Self *data);
183 
184 protected:
185  virtual void Graft(const DataObject *data) ITK_OVERRIDE;
186  GPUImage();
187  virtual ~GPUImage() ITK_OVERRIDE;
188  using Superclass::Graft;
189 
190 private:
191  ITK_DISALLOW_COPY_AND_ASSIGN(GPUImage);
192  typename GPUImageDataManager< GPUImage >::Pointer m_DataManager;
193 };
194 
195 class ITK_TEMPLATE_EXPORT GPUImageFactory : public itk::ObjectFactoryBase
196 {
197 public:
202 
204  virtual const char* GetITKSourceVersion() const ITK_OVERRIDE {
205  return ITK_SOURCE_VERSION;
206  }
207  const char* GetDescription() const ITK_OVERRIDE {
208  return "A Factory for GPUImage";
209  }
211 
213  itkFactorylessNewMacro(Self);
214 
217 
219  static void RegisterOneFactory(void)
220  {
222 
224  }
225 
226 private:
227  ITK_DISALLOW_COPY_AND_ASSIGN(GPUImageFactory);
228 
229 #define OverrideImageTypeMacro(pt,dm) this->RegisterOverride( \
230  typeid(itk::Image<pt,dm>).name(), \
231  typeid(itk::GPUImage<pt,dm>).name(), \
232  "GPU Image Override", \
233  true, \
234  itk::CreateObjectFunction<GPUImage<pt,dm> >::New() )
235 
237  {
238  if( IsGPUAvailable() )
239  {
240  // 1/2/3D
241  OverrideImageTypeMacro(unsigned char, 1);
242  OverrideImageTypeMacro(signed char, 1);
243  OverrideImageTypeMacro(int, 1);
244  OverrideImageTypeMacro(unsigned int, 1);
245  OverrideImageTypeMacro(float, 1);
246  OverrideImageTypeMacro(double, 1);
247 
248  OverrideImageTypeMacro(unsigned char, 2);
249  OverrideImageTypeMacro(signed char, 2);
250  OverrideImageTypeMacro(int, 2);
251  OverrideImageTypeMacro(unsigned int, 2);
252  OverrideImageTypeMacro(float, 2);
253  OverrideImageTypeMacro(double, 2);
254 
255  OverrideImageTypeMacro(unsigned char, 3);
256  OverrideImageTypeMacro(signed char, 3);
257  OverrideImageTypeMacro(int, 3);
258  OverrideImageTypeMacro(unsigned int, 3);
259  OverrideImageTypeMacro(float, 3);
260  OverrideImageTypeMacro(double, 3);
261  }
262  }
263 
264 };
265 
266 template <typename T>
267 class ITK_TEMPLATE_EXPORT GPUTraits
268 {
269 public:
270  typedef T Type;
271 };
272 
273 template <typename TPixelType, unsigned int NDimension>
274 class ITK_TEMPLATE_EXPORT GPUTraits< Image< TPixelType, NDimension > >
275 {
276 public:
278 };
279 
280 } // end namespace itk
281 
282 #ifndef ITK_MANUAL_INSTANTIATION
283 #include "itkGPUImage.hxx"
284 #endif
285 
286 #endif
void DataHasBeenGenerated() override
Definition: itkGPUImage.h:172
PixelContainer::ConstPointer PixelContainerConstPointer
Definition: itkGPUImage.h:67
#define ITK_SOURCE_VERSION
Definition: itkVersion.h:40
static Pointer New()
SmartPointer< Self > Pointer
Definition: itkGPUImage.h:45
itk::SmartPointer< const Self > ConstPointer
Definition: itkGPUImage.h:201
Superclass::IOPixelType IOPixelType
Definition: itkGPUImage.h:58
const char * GetDescription() const override
Definition: itkGPUImage.h:207
Create instances of classes using an object factory.
Implements a weak reference to an object.
DefaultPixelAccessorFunctor< Self > AccessorFunctorType
Definition: itkGPUImage.h:70
GPUImage Self
Definition: itkGPUImage.h:43
void SetCurrentCommandQueue(int queueid)
Definition: itkGPUImage.h:153
NeighborhoodAccessorFunctor< Self > NeighborhoodAccessorFunctorType
Definition: itkGPUImage.h:72
GPU memory manager implemented using OpenCL. Required by GPUImage class.
Superclass::InternalPixelType InternalPixelType
Definition: itkGPUImage.h:57
Superclass::PixelType PixelType
Definition: itkGPUImage.h:55
GPUImageFactory Self
Definition: itkGPUImage.h:198
PixelContainer * GetPixelContainer()
Definition: itkGPUImage.h:142
Superclass::DirectionType DirectionType
Definition: itkGPUImage.h:59
Templated n-dimensional image class for the GPU.
Definition: itkGPUImage.h:40
Superclass::AccessorType AccessorType
Definition: itkGPUImage.h:68
WeakPointer< const Self > ConstWeakPointer
Definition: itkGPUImage.h:47
Provides accessor interfaces to Get pixels and is meant to be used on pointers contained within Neigh...
Superclass::PixelContainer PixelContainer
Definition: itkGPUImage.h:61
const PixelContainer * GetPixelContainer() const
Definition: itkGPUImage.h:147
virtual const char * GetITKSourceVersion() const override
Definition: itkGPUImage.h:204
const NeighborhoodAccessorFunctorType GetNeighborhoodAccessor() const
Definition: itkGPUImage.h:131
Image< TPixel, VImageDimension > Superclass
Definition: itkGPUImage.h:44
Provides a common API for pixel accessors for Image and VectorImage.
itk::ObjectFactoryBase Superclass
Definition: itkGPUImage.h:199
NeighborhoodAccessorFunctorType GetNeighborhoodAccessor()
Definition: itkGPUImage.h:122
Superclass::SpacingType SpacingType
Definition: itkGPUImage.h:60
#define OverrideImageTypeMacro(pt, dm)
Definition: itkGPUImage.h:229
SmartPointer< const Self > ConstPointer
Definition: itkGPUImage.h:46
Superclass::OffsetType OffsetType
Definition: itkGPUImage.h:64
Superclass::ValueType ValueType
Definition: itkGPUImage.h:56
Superclass::RegionType RegionType
Definition: itkGPUImage.h:65
GPUImage< TPixelType, NDimension > Type
Definition: itkGPUImage.h:277
int GetCurrentCommandQueueID()
Definition: itkGPUImage.h:158
static bool RegisterFactory(ObjectFactoryBase *, InsertionPositionType where=INSERT_AT_BACK, vcl_size_t position=0)
itk::SmartPointer< Self > Pointer
Definition: itkGPUImage.h:200
static void RegisterOneFactory(void)
Definition: itkGPUImage.h:219
bool IsGPUAvailable()
Give access to partial aspects a type.
Superclass::SizeType SizeType
Definition: itkGPUImage.h:62
Superclass::IndexType IndexType
Definition: itkGPUImage.h:63
Base class for all data objects in ITK.
Templated n-dimensional image class.
Definition: itkImage.h:75
const AccessorType GetPixelAccessor(void) const
Definition: itkGPUImage.h:114
Defines an itk::Image front-end to a standard C-array.
PixelContainer::Pointer PixelContainerPointer
Definition: itkGPUImage.h:66