Azzera filtri
Azzera filtri

Save multiple images in a folder

2 visualizzazioni (ultimi 30 giorni)
Hazel Sialongo
Hazel Sialongo il 4 Ott 2016
Commentato: Muhammad Anwaar il 31 Gen 2019
After I captured the image it save the image.But when I captured again another image and when I save it, the previous image replaced by the new image. I want to save new image not to replace it. How will I do that?

Risposte (2)

Massimo Zanetti
Massimo Zanetti il 4 Ott 2016
Change its name
  1 Commento
Muhammad Hammad Malik
Muhammad Hammad Malik il 20 Ago 2018
without changing the name how can we save different images with out overwrite?

Accedi per commentare.


Thorsten
Thorsten il 4 Ott 2016
You have to use a new name for each image; e.g., for your i'th image:
filename = sprintf('myimage%02d.png', i);
  4 Commenti
Hazel Sialongo
Hazel Sialongo il 4 Ott 2016
How to get image from webcam? I'm sorry i'm new to this.
Muhammad Anwaar
Muhammad Anwaar il 31 Gen 2019
by this u can take image through webcam and u can save it
webcam = webcam(1);
preview(webcam);
img = snapshot(webcam);
imshow(img);
imwrite(img, 'ab.png');

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by