-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 #2487
Comments
And in line 86: Between lines 84 and 85 following line is missing: This is solved when line 86 is replaced by:
|
In frameset.m (and the corresponding part in librealsense_mex.cpp) there are some small things missing: |
In pipeline_profile.m: I noticed this when I was trying to get the intrinsics from the camera like this. pipeline = realsense.pipeline();
pipeline_profile = pipeline.start(obj.config);
depth_stream = pipeline_profile.get_stream(realsense.stream.depth);
depth_stream = depth_stream.as('video_stream_profile'); % <--- 'Access violation'
intrinsics = depth_stream.get_intrinsics(); It results in a complete crash (Access violation detected) when executing the last line. I just moved the last part of this comment to a new issue: #2541 |
None of the filters seem to work in the Matlab wrapper. depth_decimation_filter = realsense.decimation_filter;
depth_decimation_filter.set_option(realsense.option.filter_magnitude, 3) % <--- ERROR results in
I assume the process_interface and its children are stil work in progress? That is suggested in the code of librealsense_mex.cpp on line 1004. |
disparity_transform.m: |
Hi @izaakvc |
Closing as resolved. Thanks @izaakvc |
Fixed by PR2644 |
The Matlab wrapper contains some typos in both
realsense.depth_sensor
andrealsense.depth_stereo_sensor
:line 1:
classdef depth_sensor < sensor
must beclassdef depth_sensor <
realsense.sensor
line 15:
emd
must beend
The text was updated successfully, but these errors were encountered: