FindTilt(ImGearRasterPage,Double,Double,Double) Method
In This Topic
Computes the least-squares best fit plane for an image.
Syntax
'Declaration
Public Shared Sub FindTilt( _
ByVal As ImGearRasterPage, _
ByRef As Double, _
ByRef As Double, _
ByRef As Double _
)
'Usage
Dim page As ImGearRasterPage
Dim slopeX As Double
Dim slopeY As Double
Dim piston As Double
ImGearRasterProcessing.FindTilt(page, slopeX, slopeY, piston)
public static void FindTilt(
ImGearRasterPage ,
out double ,
out double ,
out double
)
public: static void FindTilt(
ImGearRasterPage* ,
[PARAMFLAG::Out] double ,
[PARAMFLAG::Out] double ,
[PARAMFLAG::Out] double
)
public:
static void FindTilt(
ImGearRasterPage^ ,
[Out] double ,
[Out] double ,
[Out] double
)
Parameters
- page
- An ImageGear.Core.ImGearRasterPage class object to process.
- slopeX
- Returns the slope in the X direction of the tilt plane.
- slopeY
- Returns the slope in the Y direction of the tilt plane.
- piston
- Returns the piston of the tilt plane.
Example
See Also