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.

Antworten (2)

Image Analyst
Image Analyst am 11 Feb. 2021

0 Stimmen

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 Kommentare

Kingsley Bowoto
Kingsley Bowoto am 11 Feb. 2021
Thanks for the input @Image Analyst but my matlab does not have control of the camera. my matlab can only have access to the folder in my PC.
Image Analyst
Image Analyst am 11 Feb. 2021
Then I guess you used the second method I mentioned, right?
Kingsley Bowoto
Kingsley Bowoto am 12 Feb. 2021
I tried but didn't work. Please can you show me how the syntax will look like,I might be missing something somewhere.

Melden Sie sich an, um zu kommentieren.

Gefragt:

am 11 Feb. 2021

Beantwortet:

am 12 Feb. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by