FuseBox
FuseBox copied to clipboard
extension image
i have a 2 geotiff images (pan and ms) , how can i convert it to .m images . thank's
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);