Transfer dimensions from the 3D model to Orthophoto

Problem: I have the dimensions of the coordinates in the 3d-model, but I need them in the Orthophoto… So I want to select a polygon in the Orthophoto in my Python program (works) and want to equate this with the 3d-model. The problem ist, that the 3d model has another size than the Orthophoto, so I can’t equate the x-axis with the width of the Orthophoto. Does anyone an idea which attribute is the same, so I can “connect” them? Thanks!

You could reference the code in https://github.com/OpenDroneMap/ODM/blob/c4bbee2881549b8fca5bcaf68fb86d9cae4b8bd0/opendm/shots.py#L31 which converts camera poses to georeferenced (lat/lon) coordinates. The same logic would apply to vertices locations (assuming you’re using the georeferenced textured model).

1 Like

I’m using the .las file, so the coordinates are in meters. Thanks for your reply!