문제

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..?

도움이 되었습니까?

해결책

try "imwrite" function in MATLAB

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top