how i can capture and then save many images using kinect camera at one time?

2 visualizzazioni (ultimi 30 giorni)
how i can capture and thensave many images using kinect camera at one time? i am using matlab by making GUI. i can save image now but i want to save more then one images with the passing of seconds. kindly guide me thanks
  4 Commenti
Florian Morsch
Florian Morsch il 16 Ago 2018
I dont know what you have attached there, its no link ;)
This might help you, its a example on how to get multiple images from a webcam. Since you already can get your images from the kinect you just can change the loop in the example. https://de.mathworks.com/help/supportpkg/usbwebcams/ug/acquire-webcam-images-in-a-loop.html
Muhammad Hammad Malik
Muhammad Hammad Malik il 20 Ago 2018
Modificato: Walter Roberson il 27 Ago 2018
thanks for your kind help. i have used this code
N = 4;
A = imread('my_img.png');
for ii = 1:N
imwrite(A,strcat('my_new',num2str(ii),'.png'));
end
from link given by you. when i run this code it is saving multiple images but when again i run this, it overwrite the images on previous ones instead creating the new images. so how to do that? thanks

Accedi per commentare.

Risposta accettata

Florian Morsch
Florian Morsch il 20 Ago 2018
Right now you have a fixed N, in this case N=4 and if you run your code you will save the images to my_new1.png, my_new2.png, and so on. Now if you run the code again, the N stays the same which causes the name to be the same, thats why you are overriting the images. If you want to save multiple images in the folder, search for all image files in the folder, count them and then add that number to the name.
From this already answered question ( https://de.mathworks.com/matlabcentral/answers/65564-find-total-number-of-images-in-a-folder ) you can learn how to count the images in a folder.
You can use
a=dir([yourfolder '/*.jpg']); %%You have to give your folder location here
out=size(a,1);
N = 4;
A = imread('my_img.png');
for ii = 1:N
NumberOfNextImage=ii + out;
imwrite(A,strcat('my_new',num2str(NumberOfNextImage),'.png'));
Now your code would check for the total amount of images in the folder and if you run with 4 images and say you already have 12 in the folder, your images would be named ii + 12, so my_img13.png, my_img14.png, ... and so on.
  4 Commenti
Muhammad Hammad Malik
Muhammad Hammad Malik il 28 Ago 2018
Modificato: Walter Roberson il 30 Nov 2021
i am saving images in F drive, not in C and i already saved images in F drive but when i use this code then it is showing this error. see the code:
a=dir(['F:\kinect data\color\plant' '/*.jpg']);
out=size(a,1);
N = 4;
for ii = 1:N
NumberOfNextImage=ii + out;
imwrite(color,strcat('my_new',num2str(NumberOfNextImage),'.jpg'));
end
Walter Roberson
Walter Roberson il 30 Nov 2021
That code tries to write images into the current directory, not into the directory that you read the images from.
imgdir = 'F:\kinect data\color\plant';
a = dir( fullfile(imgdir, '*.jpg') );
out=size(a,1);
N = 4;
for ii = 1:N
%at this point, update the variable named color with a new image
NumberOfNextImage=ii + out;
outfile = fullfile(imgdir, "my_new" + NumberOfNextImage + ".jpg");
imwrite(color, outfile);
end

Accedi per commentare.

Più risposte (1)

Mohamed Ramadan
Mohamed Ramadan il 30 Nov 2021
mycam=webcam
preview(mycam)
img=snapshot(mycam);
imshow(img)
imwrite(img,'newimage.jpg');

Community Treasure Hunt

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

Start Hunting!

Translated by