Implementing "IMREAD" function in real time
이전 댓글 표시
I am currently working on a project that has to do with the capturing of images with a camera. I want a matlab syntax that can read images from a target folder as soon as the images go into it. I would greatly appreaciate if anyone can give me a clue on this.
답변 (2개)
Image Analyst
2021년 2월 11일
0 개 추천
If your MATLAB program has control of the camera, call getsnapshot() followed by image() and drawnow. If not, repeatedly call dir() and look for changes, then identify the new file and call imread() and imshow() if a new image appeared in the folder. Not sure how fast it will be though. Should appear "real time" if your frame rate is low enough.
댓글 수: 3
Kingsley Bowoto
2021년 2월 11일
Image Analyst
2021년 2월 11일
Then I guess you used the second method I mentioned, right?
Kingsley Bowoto
2021년 2월 12일
Walter Roberson
2021년 2월 12일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Matrox Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!