XnaFanUtilGetDifferenceImage(Image, Image) Method
Gets an Image which displays the differences between two images.
Namespace: DevCase.ThirdParty.XnaFanAssembly: DevCase.net48.ThirdParty.XnaFan (in DevCase.net48.ThirdParty.XnaFan.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Image GetDifferenceImage(
Image image1,
Image image2
)
Public Shared Function GetDifferenceImage (
image1 As Image,
image2 As Image
) As Image
Dim image1 As Image
Dim image2 As Image
Dim returnValue As Image
returnValue = XnaFanUtil.GetDifferenceImage(image1,
image2)
public:
static Image^ GetDifferenceImage(
Image^ image1,
Image^ image2
)
static member GetDifferenceImage :
image1 : Image *
image2 : Image -> Image
No code example is currently available or this language may not be supported.
- image1 Image
-
The first image to compare.
- image2 Image
-
The second image to compare.
Image
The resulting
Image.
This is a code example.
No code example is currently available or this language may not be supported.
Dim img1 As Image = Image.FromFile("C:\Image1.jpg")
Dim img2 As Image = Image.FromFile("C:\Image2.jpg")
Dim imageDiff As Image = GetDifferenceImage(img1, img2)
PictureBox1.BackgroundImage = imageDiff
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.