Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note: edited since first posted
By changing some of the parameters used in the
structural_similarity()
function fromskimage
, we can get the SSIM calculation to work with the examples in our tests which contain NaNs in the target image.In working on this, we discovered that the old configuration of
structural_similarity()
only fails if there is a NaN in the top left (i.e. aty[..., 0, 0]
) but doesn't fail if there are NaNs elsewhere. So we had only caught an edge case with our tests.However, I believe that this new configuration of
structural_similarity()
which passes with our current tests is still better because it is more robust and more referenceable. The new configuration ofstructural_similarity()
matches that used in the original paper . We use the hint in thestructural_similarity()
docstring to match to the original paper.This solves #11