Hi Everybody,
I am trying to save images but the outputs images were overturned (up down and down up). Therefor I used flipud but it isn't work.
Thank you in advance
Reyadh
if true
cd C:\Calculated_NDVI_Arcgis
dinfo = dir('*_B3*.tif');
nfile = length(dinfo);
filenames = {dinfo.name};
for K = 1 : nfile
b3_file{K} = filenames{K};
band_pos{K} = strfind(b3_file{K}, '_B3');
b4_file{K} = b3_file{K}; b4_file{K}(band_pos{K} + 2) = '4';
b3_data{K} = double( imread(b3_file{K}) );
b4_data{K} = double( imread(b4_file{K}) );
finalndvi{K} = (b4_data{K} - b3_data{K}) ./ (b4_data{K} + b3_data{K});
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
R = georasterref('RasterSize',size(finalndvi{K}),'LatitudeLimits',[30.95115,31.76385],'LongitudeLimits',[46.58315,47.43285]);
R= flipud(R);
geotiffwrite(sprintf('%d.tif',K),finalndvi{K},R);
end

 採用された回答

reyadh Albarakat
reyadh Albarakat 2018 年 1 月 24 日

0 投票

I did flipping to the finalndvi like:
finalndvi{K}=flipud(finalndvi{K});
Then I got final flipped images:)

その他の回答 (1 件)

James Tursa
James Tursa 2018 年 1 月 22 日

0 投票

Try this:
R = R(end:-1:1,:,:);

7 件のコメント

Reyadh Albarakat
Reyadh Albarakat 2018 年 1 月 23 日
Hi James, I tried your answer but unfortunately it didn't work
Thank you
Reyadh
James Tursa
James Tursa 2018 年 1 月 23 日
編集済み: James Tursa 2018 年 1 月 23 日
Oh, I just noticed you don't have a simple 3D image variable.
Reyadh Albarakat
Reyadh Albarakat 2018 年 1 月 23 日
Please James, is there a solution for this issue?
Walter Roberson
Walter Roberson 2018 年 1 月 23 日
Probably
R = R(end:-1:1,:,:,:);
Reyadh Albarakat
Reyadh Albarakat 2018 年 1 月 23 日
The size of R is [1,1]
Reyadh Albarakat
Reyadh Albarakat 2018 年 1 月 23 日
Hi Walter, I tried your code but still not work
Walter Roberson
Walter Roberson 2018 年 1 月 24 日
Ah, you cannot usefully flipud the handle of the image that is returned: you either need to change the axes YDIR property or else flipud the data that you send to be imaged.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeImage Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by