Point tracker - get koordinates
3 ビュー (過去 30 日間)
古いコメントを表示
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!
0 件のコメント
採用された回答
KSSV
2019 年 7 月 9 日
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
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!