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
474 B

% Wraps librealsense2 pose_frame class
classdef pose_frame < realsense.frame
methods
% Constructor
function this = pose_frame(handle)
this = this@realsense.frame(handle);
end
% Destructor (uses base class destructor)
% Functions
function pose_data = get_pose_data(this)
pose_data = realsense.librealsense_mex('rs2::pose_frame', 'get_pose_data', this.objectHandle);
end
end
end