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
582 B
16 lines
582 B
2 months ago
|
% Wraps librealsense2 motion_stream_profile class
|
||
|
classdef motion_stream_profile < realsense.stream_profile
|
||
|
methods
|
||
|
% Constructor
|
||
|
function this = motion_stream_profile(ownHandle, handle)
|
||
|
this = this@realsense.stream_profile(ownHandle, handle);
|
||
|
end
|
||
|
|
||
|
% Destructor (uses base class destructor)
|
||
|
|
||
|
% Functions
|
||
|
function motion_intrinsics = get_motion_intrinsics(this)
|
||
|
motion_intrinsics = realsense.librealsense_mex('rs2::motion_stream_profile', 'get_motion_intrinsics', this.objectHandle);
|
||
|
end
|
||
|
end
|
||
|
end
|