Geographic coordinate to Image coordinate
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shwe Kanote
am 4 Aug. 2014
Kommentiert: MOHIT
am 12 Dez. 2016
I have images which are extracted from google earth and I would like to transform geography coordinate to simple image coordinate (x,y) of some point. I have four corner point coordinates of image. The point which I transform is 16 48 36.49 N, 96 7 0.82. What should I do and What are useful methods?
0 Kommentare
Akzeptierte Antwort
Supreeth Subbaraya
am 5 Aug. 2014
You should use the georasterref function to create geographic raster reference object. For example,
R = georasterref('LatitudeLimits', [27 28], 'LongitudeLimits', [86 87],'RasterSize', [121 121])
Then you can use the function geographicToIntrinsic to obtain the intrinsic coordinates. The function can be called as,
[xIntrinsic, yIntrinsic] = geographicToIntrinsic(R,lat, lon)
4 Kommentare
MOHIT
am 12 Dez. 2016
Hi... It is still not clear can you please clarify it my question is following...
I also have few known points in an image and same points I have as GPS coordinates also. How can I georeference my image to get all points in the image as GPS points?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Geographic Coordinate Reference Systems 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!