You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If image2 is larger than image1 but the overlap is identical, Diff will report that they are identical.
Either check that the sizes are equal at the top of Diff, or compute the bounds like this:
bounds := image1.Bounds().Union(image2.Bounds())
The text was updated successfully, but these errors were encountered:
If image2 is larger than image1 but the overlap is identical,
Diff
will report that they are identical.Either check that the sizes are equal at the top of
Diff
, or compute the bounds like this:The text was updated successfully, but these errors were encountered: