KeyPointsFilterRetainBest Method
|
Retain the specified number of the best keypoints (according to the response)
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static KeyPoint[] RetainBest(
IEnumerable<KeyPoint> keypoints,
int npoints
)
Public Shared Function RetainBest (
keypoints As IEnumerable(Of KeyPoint),
npoints As Integer
) As KeyPoint()
public:
static array<KeyPoint>^ RetainBest(
IEnumerable<KeyPoint>^ keypoints,
int npoints
)
static member RetainBest :
keypoints : IEnumerable<KeyPoint> *
npoints : int -> KeyPoint[]
OpenCvSharp.KeyPointsFilter.RetainBest = function(keypoints, npoints);
Parameters
- keypoints
- Type: System.Collections.GenericIEnumerableKeyPoint
- npoints
- Type: SystemInt32
Return Value
Type:
KeyPoint
See Also