I have been requested to make a Python file in order to capture screenshots at regular intervals on a minimal Windows XP machine (sadly), for obvious compatibility reasons I used Python 2.7.10 X86.
The application works as expected on Windows 10 using the same Python version (32 Bits), but does not work on the Windows XP machine.
opencv-python neither Pillow are working, they both indicate that the specified procedure can't be found.
I think that the issue is related to missing dependencies, especially when the XP machine is minimalist...
To be more precise, the python file crashes at "import cv2" line.
If there are any other screenshots and image comparison libraries I'd be glad to know!
The last resort would be going to a lower level, finding the value from it's memory address (from the app), saving it and comparing the old value with the new one, however I wonder if this is even possible with Python...
Thank you for reading, any help appreciated!
EDIT : Sorry I have forgot to mention that I need to make a comparison with the previous image. I used : ImageChops.difference(a, b)