CvBlobsFilterByArea Method |
http://www.emgu.com
Filter blobs by area. Those blobs whose areas are not in range will be erased from the input list of blobs.
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void FilterByArea(
int minArea,
int maxArea
)
Public Sub FilterByArea (
minArea As Integer,
maxArea As Integer
)
public:
void FilterByArea(
int minArea,
int maxArea
)
member FilterByArea :
minArea : int *
maxArea : int -> unit
Parameters
- minArea
- Type: SystemInt32
Minimun area - maxArea
- Type: SystemInt32
Maximun area
See Also