Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nohayassin committed May 10, 2021
1 parent 8f20392 commit 3b5c2ff
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/pose-and-image/rs-pose-and-image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <chrono>
#include <thread>
#include <mutex>
#include "example.hpp"
#include "example-utils.hpp"

int main(int argc, char * argv[]) try
{
Expand Down
2 changes: 1 addition & 1 deletion examples/pose-predict/rs-pose-predict.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include <math.h>
#include <float.h>
#include "example.hpp"
#include "example-utils.hpp"

inline rs2_quaternion quaternion_exp(rs2_vector v)
{
Expand Down
2 changes: 1 addition & 1 deletion examples/pose/rs-pose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <librealsense2/rs.hpp>
#include <iostream>
#include <iomanip>
#include "example.hpp"
#include "example-utils.hpp"

int main(int argc, char * argv[]) try
{
Expand Down
2 changes: 1 addition & 1 deletion tools/benchmark/rs-benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ int main(int argc, char** argv) try
second_stream = ir_stream;
else
{
std::cout<< " Connect a device that supports either RGB stream or Infrared stream." <<std::endl;
std::cout<< " Connect a Depth Camera that supports either RGB or Infrared streams." <<std::endl;
return EXIT_SUCCESS;
}

Expand Down
2 changes: 2 additions & 0 deletions wrappers/python/examples/align-depth2color.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@

# Create a pipeline
pipeline = rs.pipeline()

# Create a config and configure the pipeline to stream
# different resolutions of color and depth streams
config = rs.config()

# Get device product line for setting a supporting resolution
pipeline_wrapper = rs.pipeline_wrapper(pipeline)
pipeline_profile = config.resolve(pipeline_wrapper)
Expand Down

0 comments on commit 3b5c2ff

Please sign in to comment.