필터 지우기
필터 지우기

check for keyboard press in while loop

조회 수: 45 (최근 30일)
raheem mian
raheem mian 2020년 3월 10일
답변: Amir Azadeh Ranjbar 2023년 10월 19일
I'd like to check for a keyboard press and increment a number if the right arrow key is pressed and decrement if the left array key is pressed.
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2020년 3월 11일
raheem - please provide some context. Do you have a figure or GUI that you can use to listen for key press events? Or are you doing something else?
raheem mian
raheem mian 2020년 3월 11일
Yeah I have a volume of images that I want to iterate through. I would be using imagesc(vol(:, :, i)) where i is the iterator

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

답변 (2개)

Geoff Hayes
Geoff Hayes 2020년 3월 12일
raheem - since you have a figure, you could use the WindowKeyPressFcn to listen for a key press event (assuming that the figure has focus). You could then change the contents of the axes given the left or right arrow. Just save the below to a file named MyKeyPressListener.m.
function MyKeyPressListener
hFig = figure;
hAxes = gca;
set(hFig,'WindowKeyPressFcn',@keyPressCallback);
function keyPressCallback(source,eventdata)
% determine the key that was pressed
keyPressed = eventdata.Key;
if strcmpi(keyPressed,'rightarrow')
C = [0 2 4; 8 10 12; 16 18 20];
imagesc(C, 'Parent', hAxes);
elseif strcmpi(keyPressed,'leftarrow')
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
imagesc(C, 'Parent', hAxes);
end
end
end

Amir Azadeh Ranjbar
Amir Azadeh Ranjbar 2023년 10월 19일

카테고리

Help CenterFile Exchange에서 Desktop에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by