KeyPointsFilterRunByImageBorder Method
|
Remove keypoints within borderPixels of an image edge.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static KeyPoint[] RunByImageBorder(
IEnumerable<KeyPoint> keypoints,
Size imageSize,
int borderSize
)
Public Shared Function RunByImageBorder (
keypoints As IEnumerable(Of KeyPoint),
imageSize As Size,
borderSize As Integer
) As KeyPoint()
public:
static array<KeyPoint>^ RunByImageBorder(
IEnumerable<KeyPoint>^ keypoints,
Size imageSize,
int borderSize
)
static member RunByImageBorder :
keypoints : IEnumerable<KeyPoint> *
imageSize : Size *
borderSize : int -> KeyPoint[]
OpenCvSharp.KeyPointsFilter.RunByImageBorder = function(keypoints, imageSize, borderSize);
Parameters
- keypoints
- Type: System.Collections.GenericIEnumerableKeyPoint
- imageSize
- Type: OpenCvSharpSize
- borderSize
- Type: SystemInt32
Return Value
Type:
KeyPoint
See Also