Skip to content
New issue

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

Matlab wrapper: typos in align.m #2710

Closed
izaakvc opened this issue Nov 12, 2018 · 1 comment
Closed

Matlab wrapper: typos in align.m #2710

izaakvc opened this issue Nov 12, 2018 · 1 comment
Assignees
Labels

Comments

@izaakvc
Copy link

izaakvc commented Nov 12, 2018

There were some errors in align.m, resulting in errors. It can be fixed by replacing the first 13 lines by this:

% 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 = this@realsense.processing_block(out);
        end
...
@dorodnic
Copy link
Contributor

I believe this should be resolved in 2.16.5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants