How to select points from a input video?

Hai everyone,
I have to select two points corresponding to position of a moving object from a video. How to do that?
Please help me.
Any help will be highly appreciated.
Thanks in advance
Thanks and regards,
Aleena N A

 Accepted Answer

v = VideoReader(myvideo) ;
n = 10 ; % say this the frame you want to read
frame = read(v,n);
imshow(frame)
[x,y] = getpts ; % select points/ double click to exit

More Answers (0)

Asked:

on 19 Apr 2022

Commented:

on 22 Apr 2022

Community Treasure Hunt

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

Start Hunting!