how to store the images by some another name after reading in a for loop???

조회 수: 1 (최근 30일)
hello all, i wrote the following program to read multiple images now what i want to do is i want to store these images one by one to some location by some names like g1.jpg,g2jpg,g3jpg.........how can i do this ??
close all; clear all; clc; for i=1:5 m=imread(['C:\Users\shree\Desktop\1\im' num2str(i) '.jpg']); %r=imresize(m,[50 50]); %l=rgb2gray(r); %a=l(:); figure,imshow(m); end
%a1=g1(:);

채택된 답변

Chandrasekhar
Chandrasekhar 2014년 3월 7일
filename = ['g' num2str(i) '.jpg'];
saveas(m,filename)
  댓글 수: 3
Dishant Arora
Dishant Arora 2014년 3월 7일
imwrite(image,'filename');
saveas is used to save figure and diagram blocks. Or you can use save also.
Image Analyst
Image Analyst 2014년 3월 7일
"image" being the actual variable name (which hopefully is not image which is the name of a built-in function).

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by