我有一个关于如何做某事的问题。我有一个包含不同图像的文件夹(每个图像有 3 个波段)。例如。
Img_244_234_1_1.tif
Img_244_234_1_2.tif
Img_250_234_1_1.tif
Img_250_234_1_2.tif
我需要做的是按名称拼接图像(例如,所有数字 244、250...)。现在,我正在以这种方式手动进行:
image1 = imread('C:\Prueba\Img_244_234_1_1.tif','tif');
image2 = imread('C:\Prueba\Img_244_234_1_2.tif','tif');
image3 = imread('C:\Prueba\Img_250_234_1_1.tif','tif');
image4 = imread('C:\Prueba\Img_250_234_1_2.tif','tif');
image_result1 = cat(2,image1,image2);
image_result1 = cat(2,image1,image2);
如何使用始终位于相同输出名称位置的日期编号(244,250 ...)自动化?
非常感谢任何建议。