Cv2GroupRectangles Method (IListRect, Int32, Double, Int32, Double)
|
Groups the object candidate rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static void GroupRectangles(
IList<Rect> rectList,
int groupThreshold,
double eps,
out int[] weights,
out double[] levelWeights
)
Public Shared Sub GroupRectangles (
rectList As IList(Of Rect),
groupThreshold As Integer,
eps As Double,
<OutAttribute> ByRef weights As Integer(),
<OutAttribute> ByRef levelWeights As Double()
)
public:
static void GroupRectangles(
IList<Rect>^ rectList,
int groupThreshold,
double eps,
[OutAttribute] array<int>^% weights,
[OutAttribute] array<double>^% levelWeights
)
static member GroupRectangles :
rectList : IList<Rect> *
groupThreshold : int *
eps : float *
weights : int[] byref *
levelWeights : float[] byref -> unit
OpenCvSharp.Cv2.GroupRectangles = function(rectList, groupThreshold, eps, weights, levelWeights);
Parameters
- rectList
- Type: System.Collections.GenericIListRect
- groupThreshold
- Type: SystemInt32
- eps
- Type: SystemDouble
- weights
- Type: SystemInt32
- levelWeights
- Type: SystemDouble
See Also