MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkToFCameraDevice.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12#ifndef mitkToFCameraDevice_h
13#define mitkToFCameraDevice_h
14
15#include <MitkToFHardwareExports.h>
16#include "mitkCommon.h"
17#include "mitkStringProperty.h"
18#include "mitkProperties.h"
19#include "mitkPropertyList.h"
20
21#include "itkObject.h"
22#include "itkObjectFactory.h"
23
24#include <mutex>
25#include <thread>
26
27// Microservices
28#include <mitkServiceInterface.h>
29
30namespace mitk
31{
37 class MITKTOFHARDWARE_EXPORT ToFCameraDevice : public itk::Object
38 {
39 public:
40
47 virtual bool OnConnectCamera() = 0;
48
54 virtual bool ConnectCamera();
58 virtual bool DisconnectCamera() = 0;
63 virtual void StartCamera() = 0;
67 virtual void StopCamera();
71 virtual bool IsCameraActive();
75 virtual bool IsCameraConnected();
79 virtual void UpdateCamera() = 0;
86 virtual void GetAmplitudes(float* amplitudeArray, int& imageSequence) = 0;
92 virtual void GetIntensities(float* intensityArray, int& imageSequence) = 0;
98 virtual void GetDistances(float* distanceArray, int& imageSequence) = 0;
109 virtual void GetAllImages(float* distanceArray, float* amplitudeArray, float* intensityArray, char* sourceDataArray,
110 int requiredImageSequence, int& capturedImageSequence, unsigned char* rgbDataArray=nullptr) = 0;
115 itkGetMacro(CaptureWidth, int);
120 itkGetMacro(CaptureHeight, int);
125 itkGetMacro(SourceDataSize, int);
130 itkGetMacro(BufferSize, int);
135 itkGetMacro(MaxBufferSize, int);
136
140 void SetBoolProperty( const char* propertyKey, bool boolValue );
141
145 void SetIntProperty( const char* propertyKey, int intValue );
146
150 void SetFloatProperty( const char* propertyKey, float floatValue );
151
155 void SetStringProperty( const char* propertyKey, const char* stringValue );
156
160 virtual void SetProperty( const char *propertyKey, BaseProperty* propertyValue );
161
165 virtual BaseProperty* GetProperty( const char *propertyKey );
166
170 bool GetBoolProperty(const char *propertyKey, bool& boolValue);
171
175 bool GetStringProperty(const char *propertyKey, std::string& string);
176
180 bool GetIntProperty(const char *propertyKey, int& integer);
181
182 virtual int GetRGBCaptureWidth();
183
184 virtual int GetRGBCaptureHeight();
185
186 protected:
187
189
190 ~ToFCameraDevice() override;
191
195 virtual void AllocatePixelArrays();
199 virtual void CleanupPixelArrays();
200
215 std::mutex m_ImageMutex;
217 std::thread m_Thread;
221
222 PropertyList::Pointer m_PropertyList;
223
224 };
225} //END mitk namespace
230MITK_DECLARE_SERVICE_INTERFACE(mitk::ToFCameraDevice, "org.mitk.services.ToFCameraDevice")
231#endif
Virtual interface and base class for all Time-of-Flight devices.
int m_ImageSequence
counter for acquired images
virtual void GetDistances(float *distanceArray, int &imageSequence)=0
gets the distance data from the ToF camera measuring the distance between the camera and the differen...
PropertyList::Pointer m_PropertyList
a list of the corresponding properties
int m_CaptureWidth
width of the range image (x dimension)
int m_FreePos
current position in the buffer which will be filled with data acquired from the hardware
int m_RGBImageWidth
width of the RGB image (x dimension)
itkGetMacro(CaptureWidth, int)
get the currently set capture width
itkGetMacro(CaptureHeight, int)
get the currently set capture height
virtual bool OnConnectCamera()=0
Opens a connection to the ToF camera. Has to be implemented in the specialized inherited classes.
itkGetMacro(MaxBufferSize, int)
get the currently set max buffer size
int m_CurrentPos
current position in the buffer which will be retrieved by the Get methods
itkGetMacro(BufferSize, int)
get the currently set buffer size
int m_PixelNumber
number of pixels in the range image (m_CaptureWidth*m_CaptureHeight)
mitkClassMacroItkParent(ToFCameraDevice, itk::Object)
bool m_CameraConnected
flag indicating if the camera is successfully connected or not. Caution: thread safe access only!
int m_CaptureHeight
height of the range image (y dimension)
virtual void UpdateCamera()=0
updates the camera for image acquisition
bool m_CameraActive
flag indicating if the camera is currently active or not. Caution: thread safe access only!
float * m_AmplitudeArray
float array holding the amplitude image
int m_BufferSize
buffer size of the image buffer needed for loss-less acquisition of range data
virtual void GetAllImages(float *distanceArray, float *amplitudeArray, float *intensityArray, char *sourceDataArray, int requiredImageSequence, int &capturedImageSequence, unsigned char *rgbDataArray=nullptr)=0
gets the 3 images (distance, amplitude, intensity) from the ToF camera. Caution! The user is responsi...
virtual void GetAmplitudes(float *amplitudeArray, int &imageSequence)=0
gets the amplitude data from the ToF camera as the strength of the active illumination of every pixel...
int m_RGBPixelNumber
number of pixels in the range image (m_RGBImageWidth*m_RGBImageHeight)
virtual bool DisconnectCamera()=0
closes the connection to the camera
virtual void StartCamera()=0
starts the continuous updating of the camera. A separate thread updates the source data,...
itkGetMacro(SourceDataSize, int)
get the currently set source data size
std::mutex m_CameraActiveMutex
mutex for the cameraActive flag
std::mutex m_ImageMutex
mutex for images provided by the range camera
float * m_IntensityArray
float array holding the intensity image
virtual void GetIntensities(float *intensityArray, int &imageSequence)=0
gets the intensity data from the ToF camera as a greyscale image
int m_SourceDataSize
size of the PMD source data
float * m_DistanceArray
float array holding the distance image
int m_RGBImageHeight
height of the RGB image (y dimension)
int m_MaxBufferSize
maximal buffer size needed for initialization of data arrays. Default value is 100.
IGT Exceptions.