Hallo,
I am able to divide multilayer images back to single layaer by:
for im in cam:
if im.sensor.master != im.sensor:
trafo = im.trafo
im.sensor.master = im.sensor
im.master = im
im.transform = trafo //Here I need somehow apply image.sensor and image.location
But I of course transformation needs to apply sensor.rotation and sensor.locatin as well to get the exact transformation for that single image.
Do you know how and in which order I have to apply sensor.rotation and sensor.location
Greetings