How to read the X,Y and Z coordinates from a TIFF image extracted into Matlab?
45 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sachin Nag
am 18 Mär. 2017
Bearbeitet: MathWorks Support Team
am 8 Jun. 2022
I have extracted a TIFF image into Matlab using the geotiff function [A, R] = geotiffread(filename). Now the image is stored for example in A. I want to extract the X,Y and Z coordinates from this image and plot it later using surf function. How do I achieve this?
Thanks for any inputs or pointers
0 Kommentare
Akzeptierte Antwort
Chad Greene
am 18 Mär. 2017
Bearbeitet: MathWorks Support Team
am 8 Jun. 2022
Here are the x and y coordinates of a geotiff:
I = geotiffinfo(filename);
[x,y]=pixcenters(I);
2022 Update - The function pixcenters will be removed in a future release. Use the worldGrid functions instead.
5 Kommentare
Weitere Antworten (1)
sajeela khan
am 22 Apr. 2018
hello sir can u plz send me the code that hp ow u find the x y and z axis of an image
0 Kommentare
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!