How can I convert known GPS coordinates to image pixels, and again image pixels to world GPS coordinates?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I 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?
2 Kommentare
Antworten (1)
Ahmet Cecen
am 12 Dez. 2016
A simple start would be to get any two points:
dx = abs(point2gpsx - point1gpsx)/abs(point2imagex - point1imagex)
So by using a simple ratio, find how long a single pixel is in the x direction in GPS coordinates. Repeat for y direction. Then you can calculate the edges of the image in GPS coordinates, then use a meshgrid to get the coordinates for the rest.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Automated Driving Toolbox 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!