We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There were some errors in align.m, resulting in errors. It can be fixed by replacing the first 13 lines by this:
align.m
% Wraps librealsense2 align class classdef align < realsense.processing_block methods % Constructor function this = align(align_to) narginchk(1, 1); validateattributes(align_to, {'realsense.stream', 'numeric'}, {'scalar', 'nonnegative', 'real', 'integer', '<=', realsense.stream.count}); out = realsense.librealsense_mex('rs2::align', 'new', int64(align_to)); this = [email protected]_block(out); end ...
The text was updated successfully, but these errors were encountered:
Correct errors in align.m (issue IntelRealSense#2710)
ad152da
Merge pull request #2726 from lramati/matlab
0eaea65
Correct errors in align.m (issue #2710)
I believe this should be resolved in 2.16.5
Sorry, something went wrong.
lramati
RealSense-Customer-Engineering
No branches or pull requests
There were some errors in
align.m
, resulting in errors. It can be fixed by replacing the first 13 lines by this:The text was updated successfully, but these errors were encountered: