ProcessInversePolarTransform Method (Image, Angle, Double)

CVB.Net Documentation
Create an inverse polar transformed image (i.e. transform an unwrapped image back into a ring structure).

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

public static Image InversePolarTransform(
	this Image img,
	Angle startAngle,
	double innerRadius
)

Parameters

img
Type: Stemmer.CvbImage
Source image
startAngle
Type: Stemmer.CvbAngle
Orientation of the start (the total azimuth will be determined from the input image)
innerRadius
Type: SystemDouble
Inner radius of the ring (the outer radius will be determined from the input image)

Return Value

Type: Image
the transformed 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