ITK  4.12.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;
61  typedef typename Superclass::PixelContainer PixelContainer;
62  typedef typename Superclass::SizeType SizeType;
63  typedef typename Superclass::IndexType IndexType;
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 
164  GPUDataManager::Pointer GetGPUDataManager() const;
165 
166  /* Override DataHasBeenGenerated() in DataObject class.
167  * We need this because CPU time stamp is always bigger
168  * than GPU's. That is because Modified() is called at
169  * the end of each filter in the pipeline so although we
170  * increment GPU's time stamp in GPUGenerateData() the
171  * CPU's time stamp will be increased after that.
172  */
173  void DataHasBeenGenerated() ITK_OVERRIDE
174  {
176  if( m_DataManager->IsCPUBufferDirty() )
177  {
178  m_DataManager->Modified();
179  }
180  }
181 
183  virtual void Graft(const Self *data);
184 
185 protected:
186  virtual void Graft(const DataObject *data) ITK_OVERRIDE;
187  GPUImage();
188  virtual ~GPUImage();
189  using Superclass::Graft;
190 
191 private:
192  ITK_DISALLOW_COPY_AND_ASSIGN(GPUImage);
194 };
195 
196 class ITK_TEMPLATE_EXPORT GPUImageFactory : public itk::ObjectFactoryBase
197 {
198 public:
203 
205  virtual const char* GetITKSourceVersion() const ITK_OVERRIDE {
206  return ITK_SOURCE_VERSION;
207  }
208  const char* GetDescription() const ITK_OVERRIDE {
209  return "A Factory for GPUImage";
210  }
212 
214  itkFactorylessNewMacro(Self);
215 
218 
220  static void RegisterOneFactory(void)
221  {
223 
225  }
226 
227 private:
228  ITK_DISALLOW_COPY_AND_ASSIGN(GPUImageFactory);
229 
230 #define OverrideImageTypeMacro(pt,dm) this->RegisterOverride( \
231  typeid(itk::Image<pt,dm>).name(), \
232  typeid(itk::GPUImage<pt,dm>).name(), \
233  "GPU Image Override", \
234  true, \
235  itk::CreateObjectFunction<GPUImage<pt,dm> >::New() )
236 
238  {
239  if( IsGPUAvailable() )
240  {
241  // 1/2/3D
242  OverrideImageTypeMacro(unsigned char, 1);
243  OverrideImageTypeMacro(signed char, 1);
244  OverrideImageTypeMacro(int, 1);
245  OverrideImageTypeMacro(unsigned int, 1);
246  OverrideImageTypeMacro(float, 1);
247  OverrideImageTypeMacro(double, 1);
248 
249  OverrideImageTypeMacro(unsigned char, 2);
250  OverrideImageTypeMacro(signed char, 2);
251  OverrideImageTypeMacro(int, 2);
252  OverrideImageTypeMacro(unsigned int, 2);
253  OverrideImageTypeMacro(float, 2);
254  OverrideImageTypeMacro(double, 2);
255 
256  OverrideImageTypeMacro(unsigned char, 3);
257  OverrideImageTypeMacro(signed char, 3);
258  OverrideImageTypeMacro(int, 3);
259  OverrideImageTypeMacro(unsigned int, 3);
260  OverrideImageTypeMacro(float, 3);
261  OverrideImageTypeMacro(double, 3);
262  }
263  }
264 
265 };
266 
267 template <typename T>
268 class ITK_TEMPLATE_EXPORT GPUTraits
269 {
270 public:
271  typedef T Type;
272 };
273 
274 template <typename TPixelType, unsigned int NDimension>
275 class ITK_TEMPLATE_EXPORT GPUTraits< Image< TPixelType, NDimension > >
276 {
277 public:
279 };
280 
281 } // end namespace itk
282 
283 #ifndef ITK_MANUAL_INSTANTIATION
284 #include "itkGPUImage.hxx"
285 #endif
286 
287 #endif
void DataHasBeenGenerated() override
Definition: itkGPUImage.h:173
PixelContainer::ConstPointer PixelContainerConstPointer
Definition: itkGPUImage.h:67
Represent the offset between two n-dimensional indexes in a n-dimensional image.
Definition: itkOffset.h:56
#define ITK_SOURCE_VERSION
Definition: itkVersion.h:40
static Pointer New()
virtual void Initialize()
Represent the size (bounds) of a n-dimensional image.
Definition: itkSize.h:52
SmartPointer< Self > Pointer
Definition: itkGPUImage.h:45
itk::SmartPointer< const Self > ConstPointer
Definition: itkGPUImage.h:202
Superclass::IOPixelType IOPixelType
Definition: itkGPUImage.h:58
An image region represents a structured region of data.
const char * GetDescription() const override
Definition: itkGPUImage.h:208
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
Superclass::InternalPixelType InternalPixelType
Definition: itkGPUImage.h:57
Superclass::PixelType PixelType
Definition: itkGPUImage.h:55
GPUImageFactory Self
Definition: itkGPUImage.h:199
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:205
virtual void DataHasBeenGenerated()
const NeighborhoodAccessorFunctorType GetNeighborhoodAccessor() const
Definition: itkGPUImage.h:131
Image< TPixel, VImageDimension > Superclass
Definition: itkGPUImage.h:44
GPUImageDataManager< GPUImage >::Pointer m_DataManager
Definition: itkGPUImage.h:192
Provides a common API for pixel accessors for Image and VectorImage.
itk::ObjectFactoryBase Superclass
Definition: itkGPUImage.h:200
Base class for all data objects in ITK.
virtual void Graft(const DataObject *)
NeighborhoodAccessorFunctorType GetNeighborhoodAccessor()
Definition: itkGPUImage.h:122
Superclass::SpacingType SpacingType
Definition: itkGPUImage.h:60
#define OverrideImageTypeMacro(pt, dm)
Definition: itkGPUImage.h:230
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:278
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:201
static void RegisterOneFactory(void)
Definition: itkGPUImage.h:220
bool IsGPUAvailable()
Give access to partial aspects a type.
Superclass::SizeType SizeType
Definition: itkGPUImage.h:62
Superclass::IndexType IndexType
Definition: itkGPUImage.h:63
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