Hello,
I've written some code as follows
print("0. width, height:", camera.sensor.width, camera.sensor.height)
print("1. camera.center:",camera.center)
print("2. camera.unproject(Metashape.Vector((2000,1500,0))):", camera.unproject(Metashape.Vector((2000,1500,0))))
print("3. camera.project(camera.center):", camera.project(camera.center))
and the result is
0. width, height: 4000 3000
1. camera.center: Vector([6.560932254872134, -0.915845546119054, 0.6655975799801932])
2. camera.unproject(Metashape.Vector((2000,1500,0))): Vector([6.560932254872134, -0.915845546119054, 0.6655975799801932])
3. camera.project(camera.center): None
what is the function of "camera.project"