Find the position of objects in two dimensions XY
3 ビュー (過去 30 日間)
古いコメントを表示
Dear sir/Madam,
I am specislized in the area of machine learning and data mining. I am looking to extract the position of objects in two dimensions (XY) from Video file make analysis if these trajectories using machine learning algorithms thereafter.
I would like you to advise me which toolbox in matlab I can use?
Thank you so much
0 件のコメント
回答 (1 件)
Nicolas Schmit
2017 年 10 月 23 日
編集済み: Nicolas Schmit
2017 年 10 月 23 日
8 件のコメント
Walter Roberson
2017 年 10 月 28 日
Sure. But it will still only know the current position and one or two previous positions.
You could alter the code slightly to keep a "unique identifier" for each object being tracked. At each time point in which you detect a new object, you allocate it the next available identifier. At each time point in which an object is detected, you write out to a file its unique identifier and the timestamp and the current position of the object. Do not bother to keep long internal histories, and allow any object to be deleted the same way it is now.
At the end, close the file. You can then post-process the file to group by identifier number to track an individual object, or you could group by timestamps to see what was on camera at any given time.
参考
カテゴリ
Help Center および File Exchange で Tracking and Motion Estimation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!