XnaFanUtilGetDifferenceImage(String, String) 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(
string imageFilepath1,
string imageFilepath2
)
Public Shared Function GetDifferenceImage (
imageFilepath1 As String,
imageFilepath2 As String
) As Image
Dim imageFilepath1 As String
Dim imageFilepath2 As String
Dim returnValue As Image
returnValue = XnaFanUtil.GetDifferenceImage(imageFilepath1,
imageFilepath2)
public:
static Image^ GetDifferenceImage(
String^ imageFilepath1,
String^ imageFilepath2
)
static member GetDifferenceImage :
imageFilepath1 : string *
imageFilepath2 : string -> Image
No code example is currently available or this language may not be supported.
- imageFilepath1 String
-
The filepath of the first image to compare.
- imageFilepath2 String
-
The filepath of 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 = "C:\Image1.jpg"
Dim img2 As Image = "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.