ProcessPolarTransform Method (Image, Point2Dd, Double, Double, Angle, Angle)

CVB.Net Documentation
Create a polar transformation (i.e. unwrap a ring structure from inside source image into a rectangular image).

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

public static Image PolarTransform(
	this Image img,
	Point2Dd center,
	double innerRadius,
	double outerRadius,
	Angle startAngle,
	Angle totalAngle
)

Parameters

img
Type: Stemmer.CvbImage
Source image
center
Type: Stemmer.CvbPoint2Dd
Center image for the polar transform
innerRadius
Type: SystemDouble
Inner radius of the ring
outerRadius
Type: SystemDouble
Outer radius of the ring
startAngle
Type: Stemmer.CvbAngle
Orientation of the start angle
totalAngle
Type: Stemmer.CvbAngle
The total angle to cover

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 being used for the transformation.
See Also

Reference