Skip to content Skip to sidebar Skip to footer

Algorithms Python - Difference Between Two Images

In python I am computing the difference between two images uses ImageChops.difference is there a faster way to do this computation? Since it's relatively slow on 720p images, I let

Solution 1:

Use numpy. Put the image data in 2 numpy float arrays, then just do the difference between the two arrays.


Post a Comment for "Algorithms Python - Difference Between Two Images"