how can draw shape along moving trajectory ?
6 views (last 30 days)
Show older comments
draw shape along moving trajectory
0 Comments
Accepted Answer
KSSV
on 6 Feb 2017
I don't know what shape you want...I am taking a random shape here, it looks weird. But this is the procedure you have to follow:
clc; clear all ;
k = rand(10,2)/10 ;
k = [k ; k(1,:)] ; % a random shape
% random trajectory
N = 10 ;
x = rand(N,1) ;
y = rand(N,1) ;
for i = 1:N
plot(x,y,'.-b') ;
hold on
patch(x(i)+k(:,1),y(i)+k(:,2),'r')
hold off
pause(0.1)
end
More Answers (1)
See Also
Categories
Find more on Computer Vision Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!