ProcessAffineTransform Method (Image, AffineMatrix2D, Area2D)

CVB.Net Documentation
Creates an affine transformation (homogeneous matrix transformation) of an area a of the given image img.

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

public static Image AffineTransform(
	this Image img,
	AffineMatrix2D m,
	Area2D a
)

Parameters

img
Type: Stemmer.CvbImage
Source image.
m
Type: Stemmer.CvbAffineMatrix2D
Matrix to transform img.
a
Type: Stemmer.CvbArea2D
Area of img to transform.

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