Selecting ROI in a video file
14 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I am processing a video file to track the displacement of an object. I am manually selecting the ROI now using imrect, but want to do an automatic selection that has a defined size and position of the ROI. Does someone have a code for this? or can suggest something?
It would be of great help if you could share something please.
Thank you.
0 件のコメント
採用された回答
Hope Q
2019 年 10 月 28 日
Please note that imrect is no longer recommended.
If the region is known, i.e. if you can specify the desired rows and columns of the image, you can simply extract those rows and columns:
regionImage = frameImage(rowList,columunList);
If you wish to have an ROI that you can manipulate after it is initialized, consider the roi object rectangle method.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!