| ConnectedComponentsFilterByLabel Method |
Filter a image with the specified label value.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void FilterByLabel(
Mat src,
Mat dst,
int labelValue
)
Public Sub FilterByLabel (
src As Mat,
dst As Mat,
labelValue As Integer
)
public:
void FilterByLabel(
Mat^ src,
Mat^ dst,
int labelValue
)
member FilterByLabel :
src : Mat *
dst : Mat *
labelValue : int -> unit
Parameters
- src
- Type: OpenCvSharpMat
Source image. - dst
- Type: OpenCvSharpMat
Destination image. - labelValue
- Type: SystemInt32
Label value.
Return Value
Type:
Filtered image.
See Also