MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
mitkToFImageWriter.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 mitkToFImageWriter_h
13#define mitkToFImageWriter_h
14
15#include <MitkToFHardwareExports.h>
16#include "mitkCommon.h"
17#include "mitkToFImageGrabber.h"
18
19#include "itkObject.h"
20#include "itkObjectFactory.h"
21
22namespace mitk
23{
34 class MITKTOFHARDWARE_EXPORT ToFImageWriter : public itk::Object
35 {
36 public:
37
39
40 ~ToFImageWriter() override;
41
43
45
47
48 itkGetMacro( DistanceImageFileName, std::string );
49 itkGetMacro( AmplitudeImageFileName, std::string );
50 itkGetMacro( IntensityImageFileName, std::string );
51 itkGetMacro( RGBImageFileName, std::string );
52 itkGetMacro( Extension, std::string );
53 itkGetMacro( ToFCaptureWidth, int );
54 itkGetMacro( ToFCaptureHeight, int );
55 itkGetMacro( RGBCaptureWidth, int );
56 itkGetMacro( RGBCaptureHeight, int );
57 itkGetMacro( DistanceImageSelected, bool );
58 itkGetMacro( AmplitudeImageSelected, bool );
59 itkGetMacro( IntensityImageSelected, bool );
60 itkGetMacro( RGBImageSelected, bool );
61
62 itkSetMacro( DistanceImageFileName, std::string );
63 itkSetMacro( AmplitudeImageFileName, std::string );
64 itkSetMacro( IntensityImageFileName, std::string );
65 itkSetMacro( RGBImageFileName, std::string );
66 itkSetMacro( Extension, std::string );
67 itkSetMacro( ToFCaptureWidth, int );
68 itkSetMacro( ToFCaptureHeight, int );
69 itkSetMacro( RGBCaptureWidth, int );
70 itkSetMacro( RGBCaptureHeight, int );
71 itkSetMacro( DistanceImageSelected, bool );
72 itkSetMacro( AmplitudeImageSelected, bool );
73 itkSetMacro( IntensityImageSelected, bool );
74 itkSetMacro( RGBImageSelected, bool );
75
76 enum ToFImageType{ ToFImageType3D, ToFImageType2DPlusT };
81 ToFImageWriter::ToFImageType GetToFImageType();
86 void SetToFImageType(ToFImageWriter::ToFImageType toFImageType);
90 virtual void Open(){};
94 virtual void Close(){};
98 virtual void Add(float* /*distanceFloatData*/, float* /*amplitudeFloatData*/, float* /*intensityFloatData*/, unsigned char* /*rgbData*/=nullptr){};
99
100 protected:
101
105 void CheckForFileExtension(std::string& fileName);
106
107 // member variables
108 std::string m_Extension;
112 std::string m_RGBImageFileName;
113
128 };
129} //END mitk namespace
130#endif
Writer class for ToF images.
virtual void Open()
Open file(s) for writing.
virtual void Close()
Close file(s) add header and write.
itkGetMacro(ToFCaptureWidth, int)
itkSetMacro(RGBCaptureWidth, int)
std::string m_DistanceImageFileName
file name for saving the distance image
itkSetMacro(Extension, std::string)
std::string m_IntensityImageFileName
file name for saving the intensity image
virtual void Add(float *, float *, float *, unsigned char *=nullptr)
Add new data to file.
itkGetMacro(DistanceImageSelected, bool)
itkSetMacro(AmplitudeImageFileName, std::string)
bool m_DistanceImageSelected
flag indicating if distance image should be recorded
itkSetMacro(AmplitudeImageSelected, bool)
int m_ToFPixelNumber
number of pixels (widht*height) of the images to record
itkGetMacro(AmplitudeImageFileName, std::string)
itkGetMacro(RGBCaptureWidth, int)
itkSetMacro(IntensityImageFileName, std::string)
bool m_AmplitudeImageSelected
flag indicating if amplitude image should be recorded
itkSetMacro(ToFCaptureWidth, int)
itkSetMacro(DistanceImageSelected, bool)
std::string m_Extension
file extension used for saving images
itkSetMacro(RGBCaptureHeight, int)
itkGetMacro(RGBImageSelected, bool)
itkGetMacro(RGBCaptureHeight, int)
std::string m_AmplitudeImageFileName
file name for saving the amplitude image
itkGetMacro(AmplitudeImageSelected, bool)
itkGetMacro(IntensityImageFileName, std::string)
std::string m_RGBImageFileName
file name for saving the RGB image
int m_RGBImageSizeInBytes
size of the image to save in bytes
int m_RGBCaptureHeight
height (y-dimension) of the images to record.
int m_NumOfFrames
number of frames written to the image. Used for pic header.
bool m_RGBImageSelected
flag indicating if RGB image should be recorded
itkSetMacro(RGBImageSelected, bool)
int m_ToFCaptureWidth
width (x-dimension) of the images to record.
int m_ToFImageSizeInBytes
size of the image to save in bytes
itkGetMacro(Extension, std::string)
int m_RGBPixelNumber
number of pixels (widht*height) of the images to record
itkSetMacro(RGBImageFileName, std::string)
mitkClassMacroItkParent(ToFImageWriter, itk::Object)
itkGetMacro(ToFCaptureHeight, int)
itkSetMacro(ToFCaptureHeight, int)
itkGetMacro(RGBImageFileName, std::string)
bool m_IntensityImageSelected
flag indicating if intensity image should be recorded
int m_RGBCaptureWidth
width (x-dimension) of the images to record.
itkSetMacro(DistanceImageFileName, std::string)
ToFImageWriter::ToFImageType m_ToFImageType
type of image to be recorded: ToFImageType3D (0) or ToFImageType2DPlusT (1)
itkGetMacro(DistanceImageFileName, std::string)
itkSetMacro(IntensityImageSelected, bool)
itkGetMacro(IntensityImageSelected, bool)
int m_ToFCaptureHeight
height (y-dimension) of the images to record.
IGT Exceptions.