Hello Outis79,
Please check the following script that outputs the required information to the Console pane:
import Metashape
def get_markers_projections(chunk):
print("Script started...\n")
for marker in chunk.markers:
if (not len(marker.projections.keys()) and not marker.position):
continue
for camera in chunk.cameras:
if camera in marker.projections.keys():
x, y, z = marker.projections[camera].coord
print("{:s},{:.2f},{:.2f},{:s}".format(marker.label, x, y, camera.label))
print("\nScript finished")
return
chunk = Metashape.app.document.chunk
get_markers_projections(chunk)