I am new here, sorry if this is in the documentation somewhere. I want to map back from the orhtomosaic to the original images. Is that information available? The best would be a mapping of original pixel -> geo coordinates, but whatever OpenDroneMap provides would be great.
I have an application in mind that would do some object detection on the original images and then map that to their location in the world, but creating an orthomosaic with the original resolution is too large, and my detection fails when I use a lower resolution.
1 Like
Yes, check odm_report/shots.geojson
and opensfm/reconstruction.json
.
2 Likes
Cool, thanks.
If I may ask, how would I use the rotation to create a ray, specifically using the drone_dataset_brighton_beach
data, I get a shot.geojson like this, what would be the easiest way to get the coordinates at height 0 in the translation coordinate system?
"properties": {
"filename": "DJI_0018.JPG",
"focal": 0.5574477107783634,
"width": 4000,
"height": 2250,
"translation": [
576663.0907997519,
5188165.165398444,
197.83603651817737
],
"rotation": [
2.8992913565409806,
-1.1399917532669033,
0.04130279241059444
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.99455988004925,
46.842612566124274,
197.83603651817737
]
}
1 Like