Open MotaDan opened 7 years ago
The SSIM function has been deprecated. Use compare_ssim instead.
scikit-image is not simple to install on windows and does not play well with pip-tools. Need to figure out how to pip-compile it so it can be used on windows. May need to manually install it first from scikit-image before running pip-compile.
The values currently give out by compare_image are a function of the size of the data stored. Could potentially find a comparison value based on the amount of data being hidden. This would be instead of using scikit-image and all the associated packages.
Other possibility for comparing images. Duplicate image detection with perceptual hashing in Python dhash pybktree Found at Episode #20: Finding similar but not identical images in 128 bits via Python
The current compare_image function in the tests results in unbounded values being returned. Every time I create a new test I have to look at the image manually to check if they are the same and then assert that based on the value that is returned by compare_image. Structural Similarity Index (SSIM) results in a 1.0 for identical images and approaches zero and they become different. How-To: Python Compare Two Images