Method | Description | |
---|---|---|
FilterBlobs ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, IEnumerable |
Filter a image with the specified blob objects.
|
|
FilterByBlob ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, Blob blob ) : OpenCvSharp.Mat |
Filter a image with the specified blob object.
|
|
FilterByLabel ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, int labelValue ) : OpenCvSharp.Mat |
Filter a image with the specified label value.
|
|
FilterByLabels ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, IEnumerable |
Filter a image with the specified label values.
|
|
GetLargestBlob ( ) : Blob |
Find the largest blob.
|
|
RenderBlobs ( OpenCvSharp.Mat img ) : void |
Draws all blobs to the specified image.
|
Method | Description | |
---|---|---|
ConnectedComponents ( IList |
Constructor
|
|
GetLabelMask ( int label ) : OpenCvSharp.Mat |
指定したラベル値のところのみを非0で残したマスク画像を返す
|
public FilterBlobs ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, IEnumerable |
||
src | OpenCvSharp.Mat | Source image. |
dst | OpenCvSharp.Mat | Destination image. |
blobs | IEnumerable |
Blob values. |
return | OpenCvSharp.Mat |
public FilterByBlob ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, Blob blob ) : OpenCvSharp.Mat | ||
src | OpenCvSharp.Mat | Source image. |
dst | OpenCvSharp.Mat | Destination image. |
blob | Blob | Blob value. |
return | OpenCvSharp.Mat |
public FilterByLabel ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, int labelValue ) : OpenCvSharp.Mat | ||
src | OpenCvSharp.Mat | Source image. |
dst | OpenCvSharp.Mat | Destination image. |
labelValue | int | Label value. |
return | OpenCvSharp.Mat |
public FilterByLabels ( OpenCvSharp.Mat src, OpenCvSharp.Mat dst, IEnumerable |
||
src | OpenCvSharp.Mat | Source image. |
dst | OpenCvSharp.Mat | Destination image. |
labelValues | IEnumerable |
Label values. |
return | OpenCvSharp.Mat |
public RenderBlobs ( OpenCvSharp.Mat img ) : void | ||
img | OpenCvSharp.Mat | The target image to be drawn. |
return | void |