ITK  4.8.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 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;
62  typedef typename Superclass::SizeType SizeType;
63  typedef typename Superclass::IndexType IndexType;
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 
107  {
108  m_DataManager->SetGPUBufferDirty();
110  }
112 
114  const AccessorType GetPixelAccessor(void) const
115  {
116  m_DataManager->UpdateCPUBuffer();
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();
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 
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 DataObject *data) ITK_OVERRIDE;
184 
185 protected:
186  GPUImage();
187  virtual ~GPUImage();
188 
189 private:
190 
191  // functions that are purposely not implemented
192  GPUImage(const Self&);
193  void operator=(const Self&);
194 
196 };
197 
199 {
200 public:
205 
207  virtual const char* GetITKSourceVersion() const ITK_OVERRIDE {
208  return ITK_SOURCE_VERSION;
209  }
210  const char* GetDescription() const ITK_OVERRIDE {
211  return "A Factory for GPUImage";
212  }
214 
216  itkFactorylessNewMacro(Self);
217 
220 
222  static void RegisterOneFactory(void)
223  {
225 
227  }
228 
229 private:
230  GPUImageFactory(const Self&); //purposely not implemented
231  void operator=(const Self&); //purposely not implemented
232 
233 #define OverrideImageTypeMacro(pt,dm) this->RegisterOverride( \
234  typeid(itk::Image<pt,dm>).name(), \
235  typeid(itk::GPUImage<pt,dm>).name(), \
236  "GPU Image Override", \
237  true, \
238  itk::CreateObjectFunction<GPUImage<pt,dm> >::New() )
239 
241  {
242  if( IsGPUAvailable() )
243  {
244  // 1/2/3D
245  OverrideImageTypeMacro(unsigned char, 1);
246  OverrideImageTypeMacro(signed char, 1);
247  OverrideImageTypeMacro(int, 1);
248  OverrideImageTypeMacro(unsigned int, 1);
249  OverrideImageTypeMacro(float, 1);
250  OverrideImageTypeMacro(double, 1);
251 
252  OverrideImageTypeMacro(unsigned char, 2);
253  OverrideImageTypeMacro(signed char, 2);
254  OverrideImageTypeMacro(int, 2);
255  OverrideImageTypeMacro(unsigned int, 2);
256  OverrideImageTypeMacro(float, 2);
257  OverrideImageTypeMacro(double, 2);
258 
259  OverrideImageTypeMacro(unsigned char, 3);
260  OverrideImageTypeMacro(signed char, 3);
261  OverrideImageTypeMacro(int, 3);
262  OverrideImageTypeMacro(unsigned int, 3);
263  OverrideImageTypeMacro(float, 3);
264  OverrideImageTypeMacro(double, 3);
265  }
266  }
267 
268 };
269 
270 template <typename T>
272 {
273 public:
274  typedef T Type;
275 };
276 
277 template <typename TPixelType, unsigned int NDimension>
278 class GPUTraits< Image< TPixelType, NDimension > >
279 {
280 public:
282 };
283 
284 } // end namespace itk
285 
286 #ifndef ITK_MANUAL_INSTANTIATION
287 #include "itkGPUImage.hxx"
288 #endif
289 
290 #endif
AccessorType GetPixelAccessor(void)
Definition: itkGPUImage.h:106
void DataHasBeenGenerated() override
Definition: itkGPUImage.h:173
void SetPixelContainer(PixelContainer *container)
Superclass::RegionType RegionType
Definition: itkImage.h:140
PixelContainer::ConstPointer PixelContainerConstPointer
Definition: itkGPUImage.h:67
virtual void Initialize() override
Superclass::OffsetType OffsetType
Definition: itkImage.h:126
void FillBuffer(const TPixel &value)
#define ITK_SOURCE_VERSION
Definition: itkVersion.h:40
void UpdateBuffers()
static Pointer New()
void operator=(const Self &)
TPixel InternalPixelType
Definition: itkImage.h:102
SmartPointer< Self > Pointer
Definition: itkGPUImage.h:45
itk::SmartPointer< const Self > ConstPointer
Definition: itkGPUImage.h:204
Superclass::IOPixelType IOPixelType
Definition: itkGPUImage.h:58
const char * GetDescription() const override
Definition: itkGPUImage.h:210
Create instances of classes using an object factory.
Implements a weak reference to an object.
virtual void Graft(const DataObject *data) override
Superclass::SpacingType SpacingType
Definition: itkImage.h:144
TPixel ValueType
Definition: itkImage.h:96
GPUDataManager::Pointer GetGPUDataManager() const
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
TPixel PixelType
Definition: itkImage.h:89
virtual ~GPUImage()
Superclass::InternalPixelType InternalPixelType
Definition: itkGPUImage.h:57
Superclass::PixelType PixelType
Definition: itkGPUImage.h:55
PixelType IOPixelType
Definition: itkImage.h:104
GPUImageFactory Self
Definition: itkGPUImage.h:201
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
virtual void DataHasBeenGenerated()
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
Superclass::IndexType IndexType
Definition: itkImage.h:122
virtual const char * GetITKSourceVersion() const override
Definition: itkGPUImage.h:207
const NeighborhoodAccessorFunctorType GetNeighborhoodAccessor() const
Definition: itkGPUImage.h:131
Superclass::SizeType SizeType
Definition: itkImage.h:129
Image< TPixel, VImageDimension > Superclass
Definition: itkGPUImage.h:44
GPUImageDataManager< GPUImage >::Pointer m_DataManager
Definition: itkGPUImage.h:195
Superclass::DirectionType DirectionType
Definition: itkImage.h:136
Provides a common API for pixel accessors for Image and VectorImage.
ImportImageContainer< SizeValueType, PixelType > PixelContainer
Definition: itkImage.h:133
itk::ObjectFactoryBase Superclass
Definition: itkGPUImage.h:202
NeighborhoodAccessorFunctorType GetNeighborhoodAccessor()
Definition: itkGPUImage.h:122
Superclass::SpacingType SpacingType
Definition: itkGPUImage.h:60
const TPixel & GetPixel(const IndexType &index) const
#define OverrideImageTypeMacro(pt, dm)
Definition: itkGPUImage.h:233
SmartPointer< const Self > ConstPointer
Definition: itkGPUImage.h:46
Superclass::OffsetType OffsetType
Definition: itkGPUImage.h:64
Superclass::ValueType ValueType
Definition: itkGPUImage.h:56
void operator=(const Self &)
Superclass::RegionType RegionType
Definition: itkGPUImage.h:65
GPUImage< TPixelType, NDimension > Type
Definition: itkGPUImage.h:281
AccessorType GetPixelAccessor(void)
Definition: itkImage.h:259
int GetCurrentCommandQueueID()
Definition: itkGPUImage.h:158
static bool RegisterFactory(ObjectFactoryBase *, InsertionPositionType where=INSERT_AT_BACK, vcl_size_t position=0)
DefaultPixelAccessor< PixelType > AccessorType
Definition: itkImage.h:108
virtual void Allocate(bool initialize=false) override
itk::SmartPointer< Self > Pointer
Definition: itkGPUImage.h:203
PixelContainer * GetPixelContainer()
Definition: itkImage.h:236
static void RegisterOneFactory(void)
Definition: itkGPUImage.h:222
bool IsGPUAvailable()
static const unsigned int ImageDimension
Definition: itkGPUImage.h:53
Give access to partial aspects a type.
Superclass::SizeType SizeType
Definition: itkGPUImage.h:62
TPixel * GetBufferPointer() override
Superclass::IndexType IndexType
Definition: itkGPUImage.h:63
void SetPixel(const IndexType &index, const TPixel &value)
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