how can draw shape along moving trajectory ?

 Accepted Answer

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

1 Comment

Thank you for reply....
i want plot triangle from contour points, its possible to plot ??
i have attached plz refer me

Sign in to comment.

More Answers (1)

i want plot triangle shape from different fingers along moving using contours points , its possible ? KSSV?

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Asked:

on 6 Feb 2017

Answered:

on 6 Feb 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!