how do i save magnitude of gabor filter using imwrite function???

조회 수: 1 (최근 30일)
user06
user06 2017년 9월 7일
편집: user06 2017년 9월 7일
please help me in this. i want to store magnitude which is obtained by gaborfilter. image has been saved but when i read that image again then only white image has been displayed.
close all; digitDatasetPath = fullfile('H:\code\testSet'); digitData = imageDatastore(digitDatasetPath,... 'IncludeSubfolders',true,'LabelSource','foldernames'); [m, n]=size(digitData.Files) for i=1:n temp=digitData.Files(i); temp=char(temp); I=imread(temp); I=rgb2gray(I); wavelength=4; orientation=90; [mag, phase]=imgaborfilt(I,wavelength,orientation); mag_temp=ifft(mag); imwrite(mag_temp,temp,'jpg') figure,imshow(mag,[]) end

답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by