Skip to content
Snippets Groups Projects
Commit 57a89655 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Dont allow empty gpumats

parent 3bcb1f82
No related branches found
No related tags found
1 merge request!152Implements #168 keeping decoding on GPU
Pipeline #16029 passed
......@@ -244,7 +244,8 @@ bool StereoVideoSource::compute(int n, int b) {
} else {
//left.download(rgb_, stream_);
stream_.waitForCompletion(); // TODO:(Nick) Move to getFrames
LOG(INFO) << "NO SECOND CHANNEL: " << (bool)depth_.empty();
//LOG(INFO) << "NO SECOND CHANNEL: " << (bool)depth_.empty();
depth_.create(left.size(), left.type());
host_->notify(timestamp_, left, depth_);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment