Intel® RealSense™ Cross Platform API
Intel Realsense Cross-platform API
align.h
Go to the documentation of this file.
1 // License: Apache 2.0. See LICENSE file in root directory.
2 // Copyright(c) 2017 Intel Corporation. All Rights Reserved.
3 
4 #pragma once
5 
6 #include "core/processing.h"
8 #include "image.h"
9 #include "source.h"
10 
11 namespace librealsense
12 {
13  class align : public processing_block
14  {
15  public:
16  align(rs2_stream align_to);
17 
18  private:
20  rs2_stream _to_stream_type;
21  };
22 }
Definition: synthetic-stream.h:41
std::function< void(frame_interface *)> on_frame
Definition: streaming.h:103
Definition: algo.h:16
Definition: align.h:13
rs2_stream
Streams are different types of data provided by RealSense devices.
Definition: rs_sensor.h:36
Definition: types.h:587
Definition: processing.h:19
align(rs2_stream align_to)