Merging two raster using mapping toolbox

조회 수: 13 (최근 30일)
Marco Manzoni
Marco Manzoni 2019년 1월 21일
댓글: Paul Scholefield 2019년 12월 2일
Hi there,
I'm trying to find a function that receives as an input N raster images (for example after a geotiffread) with their GeographicCellsReference and the function will merge them.
something like this:
[Z1, R1] = geotiffread('/file1.tiff');
[Z2, R2] = geotiffread('/file2.tiff');
[Z_out, R_out] = merge_raster(Z1, R1, Z2, R2)
Is there something like this in the mapping toolbox?
Thanks
Marco
  댓글 수: 1
Paul Scholefield
Paul Scholefield 2019년 12월 2일
You could try imfuse in the image proecssing toolbox?
[Z_out, R_out] = imfuse(Z1,R1,Z2,R2)

댓글을 달려면 로그인하십시오.

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by