how to combine geo.tiff image combine
Show older comments
how to write the two geotiff image in one geotiff image.
my both image dimension are .m*n*2
3 Comments
KSSV
on 10 Aug 2022
Why don't you attach your images.
rishika yadav
on 10 Aug 2022
KSSV
on 10 Aug 2022
Then we cannot help...
Answers (1)
Dolon Mandal
on 12 Sep 2023
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!
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!