how can i get screenshot continuously by pressing key?

조회 수: 2 (최근 30일)
a.s
a.s 2020년 9월 7일
편집: a.s 2020년 9월 8일
This is my program that I can take a screenshot only once.
i want to take screenshot continuously in video by pressing key.
Can I do this by adding an index?
thanks before.
a = imaqhwinfo;
vid = videoinput('winvideo',1);
set(vid, 'FramesPerTrigger', Inf);
set(vid, 'ReturnedColorspace', 'rgb')
vid.FrameGrabInterval = 5;
start(vid)
while(vid.FramesAcquired<=200)
Key=get(gcf,'CurrentKey');
if Key =='s'
img1 = getsnapshot(vid);
break;
end
  댓글 수: 2
KSSV
KSSV 2020년 9월 7일
You need to remove break and use strcmp instead of ==
a.s
a.s 2020년 9월 7일
data = getsnapshot(vid);

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2020년 9월 7일
a = imaqhwinfo;
vid = videoinput('winvideo',1);
set(vid, 'FramesPerTrigger', Inf);
set(vid, 'ReturnedColorspace', 'rgb')
vid.FrameGrabInterval = 5;
start(vid)
while(vid.FramesAcquired<=200)
Key=get(gcf,'CurrentKey');
if strcmp(Key,'s')
img1 = getsnapshot(vid);
end
end
  댓글 수: 1
a.s
a.s 2020년 9월 8일
편집: a.s 2020년 9월 8일
thank you so much.....Now I want it to show me the frames every time I press the button. For example, I pressed the button 4 times.How can I see these 4 frames?

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by