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

CVB.Net Documentation
Calculates 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 void InversePolarTransform(
	this Image imgSrc,
	Point2Dd center,
	Angle startAngle,
	double innerRadius,
	Image imgDst
)

Parameters

imgSrc
Type: Stemmer.CvbImage
Source image
center
Type: Stemmer.CvbPoint2Dd
Center for the inverse transformation (i.e. the point around which the ring will be constructed)
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)
imgDst
Type: Stemmer.CvbImage
Destination image into which the unwrap result will be painted

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