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
480 B
16 lines
480 B
2 months ago
|
% Wraps librealsense2 depth_sensor class
|
||
|
classdef depth_sensor < realsense.sensor
|
||
|
methods
|
||
|
% Constructor
|
||
|
function this = depth_sensor(handle)
|
||
|
this = this@realsense.sensor(handle);
|
||
|
end
|
||
|
|
||
|
% Destructor (uses base class destructor)
|
||
|
|
||
|
% Functions
|
||
|
function scale = get_depth_scale(this)
|
||
|
scale = realsense.librealsense_mex('rs2::depth_sensor', 'get_depth_scale', this.objectHandle);
|
||
|
end
|
||
|
end
|
||
|
end
|