Skip to content
Snippets Groups Projects
Commit 92028371 authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

Fix previous commit

parent 4559b1fa
No related branches found
No related tags found
No related merge requests found
Pipeline #10617 passed
...@@ -132,7 +132,6 @@ static void run(const string &file) { ...@@ -132,7 +132,6 @@ static void run(const string &file) {
string uri = string("ftl://utu.fi/")+(string)config["stream"]["name"]+string("/rgb-d"); string uri = string("ftl://utu.fi/")+(string)config["stream"]["name"]+string("/rgb-d");
Display display(config["display"], "local"); Display display(config["display"], "local");
display.setCalibration(Q_32F);
Streamer stream(net, config["stream"]); Streamer stream(net, config["stream"]);
...@@ -185,7 +184,7 @@ static void run(const string &file) { ...@@ -185,7 +184,7 @@ static void run(const string &file) {
}); });
// Send RGB+Depth images for local rendering // Send RGB+Depth images for local rendering
if (pl.rows > 0) display.render(pl, pdisp); if (pl.rows > 0) display.render(pl, pdisp, Q_32F);
display.wait(1); display.wait(1);
// Wait for both pipelines to complete // Wait for both pipelines to complete
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment