KeyPointsFilterRunByPixelsMask Method
|
Remove keypoints from some image by mask for pixels of this image.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static KeyPoint[] RunByPixelsMask(
IEnumerable<KeyPoint> keypoints,
Mat mask
)
Public Shared Function RunByPixelsMask (
keypoints As IEnumerable(Of KeyPoint),
mask As Mat
) As KeyPoint()
public:
static array<KeyPoint>^ RunByPixelsMask(
IEnumerable<KeyPoint>^ keypoints,
Mat^ mask
)
static member RunByPixelsMask :
keypoints : IEnumerable<KeyPoint> *
mask : Mat -> KeyPoint[]
OpenCvSharp.KeyPointsFilter.RunByPixelsMask = function(keypoints, mask);
Parameters
- keypoints
- Type: System.Collections.GenericIEnumerableKeyPoint
- mask
- Type: OpenCvSharpMat
Return Value
Type:
KeyPoint
See Also