Point tracker - get koordinates

1 view (last 30 days)
Paul Himsl
Paul Himsl on 9 Jul 2019
Commented: Paul Himsl on 9 Jul 2019
Dear ladies and gentleman!
Is there any possibility in this example (https://de.mathworks.com/help/vision/ref/pointtracker.initialize.html) to save the koordinates of the tracked points for the whole duration of the video in a vector?
Thank you for your help and your time!

Accepted Answer

KSSV
KSSV on 9 Jul 2019
Some thing like this:
P = cell([],1) ; V = P ;
count = 0 ;
while ~isDone(videoFileReader)
frame = step(videoFileReader);
[points, validity] = step(tracker,frame);
out = insertMarker(frame,points(validity, :),'+');
step(videoPlayer,out);
count = count+1 ;
P{count} = points ;
V{count} = validity;
end
  1 Comment
Paul Himsl
Paul Himsl on 9 Jul 2019
Yes, it works!
Thank you very much for your help.

Sign in to comment.

More Answers (0)

Categories

Find more on Behavior and Psychophysics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!