You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
528 B

% Wraps librealsense2 depth_stereo_sensor class
classdef depth_stereo_sensor < realsense.depth_sensor
methods
% Constructor
function this = depth_stereo_sensor(handle)
this = this@realsense.depth_sensor(handle);
end
% Destructor (uses base class destructor)
% Functions
function scale = get_stereo_baseline(this)
scale = realsense.librealsense_mex('rs2::depth_stereo_sensor', 'get_stereo_baseline', this.objectHandle);
end
end
end