matlab自动保存图像

在使用imwrite函数对图片进行保存时需要指定图像位置及图像名称,不同的图像结果进行保存不免有些麻烦,所以在此写下自动保存图像方法。

clear all;clc;close all;
Img_path = '../origin-imgs/Dawn Sky.jpg';
path = '../result';
origin_Img = imread(Img_path);
[dir, file, ext] = fileparts(Img_path);
filename = [file, '_another',ext];
newPath = fullfile(path,filename);
newPath = strrep(newPath,'\','/');
imwrite(origin_Img, newPath);
fileparts:

获取文件名的组成部分。
** 用法:**
** [filepath, name, ext] = fileparts(filename)**
返回文件的路径名称、文件名、扩展名。

fullfile:

创建合成完整的地址字符串。
例:

file = fullfile('C:','A','one','example.m')
file =

    'C:\A\one\example.m'

这得到的是绝对路径,如果使用相对路径时需要使用strrep函数将’/'替换成 '/'

你可能感兴趣的:(图像处理)