You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For me, the resulting images had wrong colors, they were blueish.
I figured that this is related to issue #178, so I commented out the channel flip
img[:, :, [0, 1, 2]] = img[:, :, [2, 1, 0]]
in the function bgr_to_rbg in the file autocrop.py .
This solved the problem.
Maybe there should be some check, whether the channel flip should be applied or not?
Thanks for the great tool, it saves me a lot of time.
Regards,
Jörg
The text was updated successfully, but these errors were encountered:
For me, the resulting images had wrong colors, they were blueish.
I figured that this is related to issue #178, so I commented out the channel flip
img[:, :, [0, 1, 2]] = img[:, :, [2, 1, 0]]
in the function bgr_to_rbg in the file autocrop.py .
This solved the problem.
Maybe there should be some check, whether the channel flip should be applied or not?
Thanks for the great tool, it saves me a lot of time.
Regards,
Jörg
The text was updated successfully, but these errors were encountered: