Question

I want to save my output image file in MATLAB.. is there any way to do it automatically..

For example:

if i use some filtering techniques, then i want to save output image automatically in current folder...

like:

clc;
clear all;
close all;

a=imread('cameraman.tif');
b=fspecial(a,'log');
figure,imshow(b);

So, b contains t he output and i want to save in folder automatically.. Is there any built in function or code available on net..?

Was it helpful?

Solution

try "imwrite" function in MATLAB

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top