-
-
Notifications
You must be signed in to change notification settings - Fork 12
Description
For my application I am comparing two images using a mask image (ImageSharpCompare.CalcDiff) so that I can ignore differences between the two images in certain areas. In the case where a difference is found I want to be able to visualise that difference as it will be quite subtle and hard to spot without assistance. To do this the only method available is ImageSharpCompare.CalcDiffMaskImage but I cannot supply a mask to this. So what I get is an image representing the diff of the two images but it includes the areas that I expect to be different (the ones the mask would hide) and so it is difficult for me to see what the difference I did not expect actually is.
I would like to be able to supply a filepath for an image mask when using the ImageSharpCompare.CalcDiffMaskImage method.