![]() |
ACloudViewer
3.9.4
A Modern Library for 3D Data Processing
|
#include <RGBDRecorder.h>

Public Member Functions | |
| RGBDRecorder () | |
| virtual | ~RGBDRecorder () |
| virtual bool | InitSensor ()=0 |
| Init recorder, connect to sensor. More... | |
| virtual bool | OpenRecord (const std::string &filename)=0 |
| Create recording file. More... | |
| virtual std::shared_ptr< geometry::RGBDImage > | RecordFrame (bool write, bool enable_align_depth_to_color)=0 |
| virtual bool | CloseRecord ()=0 |
| Flush data to recording file and disconnect from sensor. More... | |
Definition at line 17 of file RGBDRecorder.h.
|
inline |
Definition at line 19 of file RGBDRecorder.h.
|
inlinevirtual |
Definition at line 20 of file RGBDRecorder.h.
|
pure virtual |
Flush data to recording file and disconnect from sensor.
Implemented in cloudViewer::io::AzureKinectRecorder.
|
pure virtual |
Init recorder, connect to sensor.
Implemented in cloudViewer::io::AzureKinectRecorder.
|
pure virtual |
Create recording file.
Implemented in cloudViewer::io::AzureKinectRecorder.
|
pure virtual |
Record one frame, return an RGBDImage. If write is true, the RGBDImage frame will be written to file. If enable_align_depth_to_color is true, the depth image will be warped to align with the color image; otherwise the raw depth image output will be saved. Setting enable_align_depth_to_color to false is useful when recording at high resolution with high frame rates. In this case, the depth image must be warped to align with the color image with when reading from the recorded file.
Implemented in cloudViewer::io::AzureKinectRecorder.