how to combine geo.tiff image combine

8 ビュー (過去 30 日間)
rishika yadav
rishika yadav 2022 年 8 月 10 日
回答済み: Dolon Mandal 2023 年 9 月 12 日
how to write the two geotiff image in one geotiff image.
my both image dimension are .m*n*2
  3 件のコメント
rishika yadav
rishika yadav 2022 年 8 月 10 日
SORRY I CANT
KSSV
KSSV 2022 年 8 月 10 日
Then we cannot help...

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

回答 (1 件)

Dolon Mandal
Dolon Mandal 2023 年 9 月 12 日
To write two GeoTIFF images into one GeoTIFF image in MATLAB, you can use the `geotiffwrite` function along with the `imwrite` function. Here's an example:
% Load the two images
image1 = imread('image1.tif');
image2 = imread('image2.tif');
% Combine the two images into a single 3D array
combinedImage = cat(3, image1, image2);
% Write the combined image as a GeoTIFF
geotiffwrite('combined_image.tif', combinedImage, R, 'GeoKeyDirectoryTag', info.GeoTIFFTags.GeoKeyDirectoryTag);
Hope it helps!

Community Treasure Hunt

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

Start Hunting!

Translated by