fix(samples): fixed problem of core for get_depth_with_region
This commit is contained in:
parent
220b1e352e
commit
388f8466d5
|
@ -178,6 +178,9 @@ int main(int argc, char *argv[]) {
|
|||
auto &&left_data = api->GetStreamData(Stream::LEFT);
|
||||
auto &&right_data = api->GetStreamData(Stream::RIGHT);
|
||||
|
||||
if (left_data.frame.empty() || right_data.frame.empty())
|
||||
continue;
|
||||
|
||||
cv::Mat img;
|
||||
cv::hconcat(left_data.frame, right_data.frame, img);
|
||||
cv::imshow("frame", img);
|
||||
|
|
Loading…
Reference in New Issue
Block a user