Returns the distance between the specified two points
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static double Distance(
Point p1,
Point p2
)
Public Shared Function Distance (
p1 As Point,
p2 As Point
) As Double
public:
static double Distance(
Point p1,
Point p2
)
static member Distance :
p1 : Point *
p2 : Point -> float
OpenCvSharp.Point.Distance = function(p1, p2);
Parameters
- p1
- Type: OpenCvSharpPoint
- p2
- Type: OpenCvSharpPoint
Return Value
Type:
Double
See Also