Computes the least-squares best fit plane for an image.
Syntax
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
// Find the tilt of an image.
double slopeX, slopeY, piston;
ImGearRasterProcessing.FindTilt(igRasterPage, out slopeX, out slopeY, out piston);
// Add the found tilt from the image, in effect removing it.
ImGearRasterProcessing.AddTilt(igRasterPage, slopeX, slopeY);
' Find the tilt of an image.
Dim slopeX As Double, slopeY As Double, piston As Double
ImGearRasterProcessing.FindTilt(igRasterPage, slopeX, slopeY, piston)
' Add the found tilt from the image, in effect removing it.
ImGearRasterProcessing.AddTilt(igRasterPage, slopeX, slopeY)
See Also