Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
making a multiple choice test with pictures that disappear using the compiler???
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to use matlab to compile an exe or other program or code that can do the following
- display an image for 10 seconds
- ask multiple choice question about said image
- store answer and move to next question/picture
- contunue until all 20 pictures are gone
is this possible or should I use another alternative?
댓글 수: 0
답변 (1개)
Image Analyst
2020년 2월 10일
Of course. In short
See the FAQ: How_can_I_process_a_sequence_of_files?
Then in the loop
imshow(filename)
pause(10) % Display it for 10 seconds before asking a question about it.
selected(k) = listdlg(........
Let's see your full script if you still can't get it working.
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!