Skip to content

Commit 3b5c2ff

Browse files
committedMay 10, 2021
fixes
1 parent 8f20392 commit 3b5c2ff

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed
 

‎examples/pose-and-image/rs-pose-and-image.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <chrono>
77
#include <thread>
88
#include <mutex>
9-
#include "example.hpp"
9+
#include "example-utils.hpp"
1010

1111
int main(int argc, char * argv[]) try
1212
{

‎examples/pose-predict/rs-pose-predict.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#include <math.h>
1111
#include <float.h>
12-
#include "example.hpp"
12+
#include "example-utils.hpp"
1313

1414
inline rs2_quaternion quaternion_exp(rs2_vector v)
1515
{

‎examples/pose/rs-pose.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <librealsense2/rs.hpp>
44
#include <iostream>
55
#include <iomanip>
6-
#include "example.hpp"
6+
#include "example-utils.hpp"
77

88
int main(int argc, char * argv[]) try
99
{

‎tools/benchmark/rs-benchmark.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ int main(int argc, char** argv) try
222222
second_stream = ir_stream;
223223
else
224224
{
225-
std::cout<< " Connect a device that supports either RGB stream or Infrared stream." <<std::endl;
225+
std::cout<< " Connect a Depth Camera that supports either RGB or Infrared streams." <<std::endl;
226226
return EXIT_SUCCESS;
227227
}
228228

‎wrappers/python/examples/align-depth2color.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414

1515
# Create a pipeline
1616
pipeline = rs.pipeline()
17+
1718
# Create a config and configure the pipeline to stream
1819
# different resolutions of color and depth streams
1920
config = rs.config()
21+
2022
# Get device product line for setting a supporting resolution
2123
pipeline_wrapper = rs.pipeline_wrapper(pipeline)
2224
pipeline_profile = config.resolve(pipeline_wrapper)

0 commit comments

Comments
 (0)
Please sign in to comment.