UtilImageGetDifferences Method
Finds the RGB differences between two images and returns them in a two-dimensional Array.
Namespace: DevCase.Core.Media.GraphicsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static byte[,] GetDifferences(
Image img1,
Image img2
)
Public Shared Function GetDifferences (
img1 As Image,
img2 As Image
) As Byte(,)
Dim img1 As Image
Dim img2 As Image
Dim returnValue As Byte(,)
returnValue = UtilImage.GetDifferences(img1,
img2)
public:
static array<unsigned char,2>^ GetDifferences(
Image^ img1,
Image^ img2
)
static member GetDifferences :
img1 : Image *
img2 : Image -> byte[,]
No code example is currently available or this language may not be supported.
- img1 Image
-
The first image to compare.
- img2 Image
-
The second image to compare with img1.
Byte
The RGB differences between the two specified images.