forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pointcloud.m
38 lines (36 loc) · 1.83 KB
/
pointcloud.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% Wraps librealsense2 pointcloud class
classdef pointcloud < realsense.filter
methods
% Constructor
function this = pointcloud(stream, index)
switch nargin
case 0
out = realsense.librealsense_mex('rs2::pointcloud', 'new');
case 1
validateattributes(stream, {'realsense.stream', 'numeric'}, {'scalar', 'nonnegative', 'real', 'integer', '<=', realsense.stream.count});
out = realsense.librealsense_mex('rs2::pointcloud', 'new', int64(stream));
case 2
validateattributes(stream, {'realsense.stream', 'numeric'}, {'scalar', 'nonnegative', 'real', 'integer', '<=', realsense.stream.count});
validateattributes(index, {'numeric'}, {'scalar', 'nonnegative', 'real', 'integer'});
out = realsense.librealsense_mex('rs2::pointcloud', 'new', int64(stream), int64(index));
end
this = [email protected](out);
end
% Destructor (uses base class destructor)
% Functions
function points = calculate(this, depth)
narginchk(2, 2)
validateattributes(depth, {'realsense.frame'}, {'scalar'}, '', 'depth', 2);
if ~depth.is('depth_frame')
error('Expected input number 2, depth, to be a depth_frame');
end
out = realsense.librealsense_mex('rs2::pointcloud', 'calculate', this.objectHandle, depth.objectHandle);
points = realsense.points(out);
end
function map_to(this, mapped)
narginchk(2, 2)
validateattributes(mapped, {'realsense.frame'}, {'scalar'}, '', 'mapped', 2);
realsense.librealsense_mex('rs2::pointcloud', 'map_to', this.objectHandle, mapped.objectHandle);
end
end
end