Hi!
I am currently using a ImageManip node to rotate the image using:
im.initialConfig.setWarpTransformFourPoints(..., True)
However, I am unable to also crop the image using the same ImageManip node:
im.initialConfig.setCropRect(0.2, 0.2, 0.8. 0.8)
It works if I pass the rotated image into a different ImageManip node using the same command to crop.
Is there a limitation to the ImageNode that I do not know about? or am I doing something wrong? Do two ImageManip nodes use more resources than just one?
Thanks!