FuseBox icon indicating copy to clipboard operation
FuseBox copied to clipboard

extension image

Open tuxkiller17 opened this issue 6 years ago • 1 comments

i have a 2 geotiff images (pan and ms) , how can i convert it to .m images . thank's

tuxkiller17 avatar Apr 19 '18 20:04 tuxkiller17

Hi tuxkiller17, you don't need to convert geotiff images to .m files. The functions of FuseBox accept normal matrix input. You can use the MATLAB geotiffread function to load the image file then use any of the Fusebox functions e.g.

[A,AR] = geotiffread(filename1)
[B,BR] = geotiffread(filename2)

sharped = solve_pansharp(A, B);

sjtrny avatar Apr 20 '18 00:04 sjtrny