Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkToFCameraPMDCamCubeDeviceFactory.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 #ifndef __mitkToFCameraPMDCamCubeDeviceFactory_h
17 #define __mitkToFCameraPMDCamCubeDeviceFactory_h
18 
19 #include <MitkPMDExports.h>
22 #include <mitkCameraIntrinsics.h>
24 #include <mitkToFConfig.h>
25 
26 // Microservices
27 #include <usServiceRegistration.h>
28 #include <usModuleContext.h>
29 #include <usGetModuleContext.h>
30 #include <usModule.h>
31 #include <usModuleResource.h>
32 #include <usModuleResourceStream.h>
33 
34 namespace mitk
35 {
43 class MITKPMD_EXPORT ToFCameraPMDCamCubeDeviceFactory : public itk::LightObject, public AbstractToFDeviceFactory {
44 
45 public:
51  {
52  }
58  std::string GetFactoryName()
59  {
60  return std::string("PMD Camcube 2.0/3.0 Factory ");
61  }
62 
66  std::string GetDeviceNamePrefix()
67  {
68  return std::string("PMD CamCube 2.0/3.0");
69  }
70 
71 private:
75  ToFCameraDevice::Pointer CreateToFCameraDevice()
76  {
78 
79  device->SetBoolProperty("HasRGBImage", false);
80  device->SetBoolProperty("HasAmplitudeImage", true);
81  device->SetBoolProperty("HasIntensityImage", true);
82 
83  return device.GetPointer();
84  }
85 
91  us::ModuleResource GetIntrinsicsResource()
92  {
94  return module->GetResource("CalibrationFiles/PMDCamCube3_camera.xml");
95  }
96 
100  int m_DeviceNumber;
101 };
102 }
103 #endif
itk::SmartPointer< Self > Pointer
Virtual interface and base class for all Time-of-Flight device factories. The basic interface is in t...
ToFPMDCamBoardDeviceFactory is an implementation of the factory pattern to generate Cam Cube Devices...
DataCollection - Class to facilitate loading/accessing structured data.
std::string GetDeviceNamePrefix()
GetDeviceNamePrefix Main part of the device name.
Module * GetModule() const
std::string GetFactoryName()
GetCurrentDeviceName Get the name of the current Cam Cube. First device is named "PMD CamCube 2...
ToFCameraPMDCamCubeDeviceFactory()
ToFCameraPMDCamCubeDeviceFactory Default contructor. This factory internally counts all Cam Cube devi...
ModuleResource GetResource(const std::string &path) const
Definition: usModule.cpp:267
static ModuleContext * GetModuleContext()
Returns the module context of the calling module.