ProcessLinearTransform Method

CVB.Net Documentation
Creates a linear transformation (matrix transformation).

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public static Image LinearTransform(
	this Image img,
	Matrix2D m
)

Parameters

img
Type: Stemmer.CvbImage
Source image.
m
Type: Stemmer.CvbMatrix2D
Matrix to transform img.

Return Value

Type: Image
Newly created image.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Image. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

Linear interpolation is used for the transformation.
See Also

Reference