-
Notifications
You must be signed in to change notification settings - Fork 13
/
plotSanityCheckSpherical.m
25 lines (25 loc) · 1.13 KB
/
plotSanityCheckSpherical.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
% %% plot
% close all;
% % num_targets=1;
function plotSanityCheckSpherical(num_targets,plane,data_split_with_ring_raw, data)
for i =1:num_targets
w = null(plane{i}.unit_normals'); % Find two orthonormal vectors which are orthogonal to v
[P,Q] = meshgrid(-1:1); % Provide a gridwork (you choose the size)
X = plane{i}.centriod(1)+w(1,1)*P+w(1,2)*Q; % Compute the corresponding cartesian coordinates
Y = plane{i}.centriod(2)+w(2,1)*P+w(2,2)*Q; % using the two vectors in w
Z = plane{i}.centriod(3)+w(3,1)*P+w(3,2)*Q;
figure(1);
surf(X,Y,Z);
hold on;
scatter3(data(i).payload_points(1,:),data(i).payload_points(2,:),data(i).payload_points(3,:), 30, 'b.');
for ring =1:32
if (isempty(data_split_with_ring_raw{i}(ring).points))
continue;
else
scatter3(data_split_with_ring_raw{i}(ring).points(1,:),...
data_split_with_ring_raw{i}(ring).points(2,:),...
data_split_with_ring_raw{i}(ring).points(3,:), 50, 'r.');
end
end
end
end