ImageTColor, TDepthLogPolar Method |
http://www.emgu.com
Convert the image to log polar, simulating the human foveal vision
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> LogPolar(
PointF center,
double magnitude,
Inter interpolationType = Inter.Linear,
Warp warpType = Warp.FillOutliers
)
Public Function LogPolar (
center As PointF,
magnitude As Double,
Optional interpolationType As Inter = Inter.Linear,
Optional warpType As Warp = Warp.FillOutliers
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ LogPolar(
PointF center,
double magnitude,
Inter interpolationType = Inter::Linear,
Warp warpType = Warp::FillOutliers
)
member LogPolar :
center : PointF *
magnitude : float *
?interpolationType : Inter *
?warpType : Warp
(* Defaults:
let _interpolationType = defaultArg interpolationType Inter.Linear
let _warpType = defaultArg warpType Warp.FillOutliers
*)
-> Image<'TColor, 'TDepth>
Parameters
- center
- Type: System.DrawingPointF
The transformation center, where the output precision is maximal - magnitude
- Type: SystemDouble
Magnitude scale parameter - interpolationType (Optional)
- Type: Emgu.CV.CvEnumInter
interpolation type - warpType (Optional)
- Type: Emgu.CV.CvEnumWarp
Warp type
Return Value
Type:
ImageTColor,
TDepthThe converted image
See Also