There are many threads related to the same question, please see the link below
Saving images to a folder
3 次查看(过去 30 天)
显示 更早的评论
Hi, I have created a while loop to perform filtering on images and then semantic segmentation. They are over 1000 images and I am wanting to save the filtered image and segmented image seperatley into a folder. Currently i have it showing each one and then changing to the next image to be analysed. Below is my code so far (without any saving just displaying image). Z is the filtered image and R is the image after semantic segmentation. I also need to save each image as its current name, so in the 'RobotImages' folder each photo has a special name with x,y and theta values that I will be using later on for localisation. Any help is accpreciated.
S = 0;
N = 1281;
while(S < N)
I = read(RobotImages);
B = rgb2gray(I);
J = imnoise(B, "salt & pepper", 0.02);
Z = medfilt2(J);
imshow(Z)
C = semanticseg(Z, net);
R = labeloverlay(I, C, 'colormap', cmao, 'Transparency', 0.4);
imshow(R)
S = S + 1;
end
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modify Image Colors 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!