-
I'm feeding two images into the color difference function, and then calculating stats: `delta_E = colour.delta_E(image1_lab, image2_lab, method='CIE 2000') print(np.min(delta_E),np.max(delta_E),np.mean(delta_E),np.std(delta_E))` It seems to work fine. But is this a valid use of the function? It seems built to send two Lab value not two Lab images. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
KelSolaar
Jul 10, 2022
Replies: 1 comment 5 replies
-
Yes this is fine, the function is vectorised so you can certainly pass an image! |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
blue-j
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes this is fine, the function is vectorised so you can certainly pass an image!