12#ifndef mitkToFCameraDevice_h
13#define mitkToFCameraDevice_h
15#include <MitkToFHardwareExports.h>
16#include "mitkCommon.h"
17#include "mitkStringProperty.h"
18#include "mitkProperties.h"
19#include "mitkPropertyList.h"
22#include "itkObjectFactory.h"
28#include <mitkServiceInterface.h>
54 virtual bool ConnectCamera();
67 virtual void StopCamera();
71 virtual bool IsCameraActive();
75 virtual bool IsCameraConnected();
86 virtual void GetAmplitudes(
float* amplitudeArray,
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;
140 void SetBoolProperty(
const char* propertyKey,
bool boolValue );
145 void SetIntProperty(
const char* propertyKey,
int intValue );
150 void SetFloatProperty(
const char* propertyKey,
float floatValue );
155 void SetStringProperty(
const char* propertyKey,
const char* stringValue );
160 virtual void SetProperty(
const char *propertyKey, BaseProperty* propertyValue );
165 virtual BaseProperty* GetProperty(
const char *propertyKey );
170 bool GetBoolProperty(
const char *propertyKey,
bool& boolValue);
175 bool GetStringProperty(
const char *propertyKey, std::string&
string);
180 bool GetIntProperty(
const char *propertyKey,
int& integer);
182 virtual int GetRGBCaptureWidth();
184 virtual int GetRGBCaptureHeight();
195 virtual void AllocatePixelArrays();
199 virtual void CleanupPixelArrays();
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.