Click or drag to resize
ERFilterERGrouping Method
http://www.emgu.com
Find groups of Extremal Regions that are organized as text blocks.

Namespace: Emgu.CV.Text
Assembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static Rectangle[] ERGrouping(
	IInputArray image,
	IInputArrayOfArrays channels,
	VectorOfERStat[] erstats,
	ERFilterGroupingMethod groupMethods = ERFilterGroupingMethod.OrientationHoriz,
	string groupingTrainedFileName = null,
	float minProbability = 0.5f
)

Parameters

image
Type: Emgu.CVIInputArray

[Missing <param name="image"/> documentation for "M:Emgu.CV.Text.ERFilter.ERGrouping(Emgu.CV.IInputArray,Emgu.CV.IInputArrayOfArrays,Emgu.CV.Text.VectorOfERStat[],Emgu.CV.Text.ERFilter.GroupingMethod,System.String,System.Single)"]

channels
Type: Emgu.CVIInputArrayOfArrays
Array of single channel images from which the regions were extracted
erstats
Type: Emgu.CV.TextVectorOfERStat
Vector of ER’s retrieved from the ERFilter algorithm from each channel
groupMethods (Optional)
Type: Emgu.CV.TextERFilterGroupingMethod

[Missing <param name="groupMethods"/> documentation for "M:Emgu.CV.Text.ERFilter.ERGrouping(Emgu.CV.IInputArray,Emgu.CV.IInputArrayOfArrays,Emgu.CV.Text.VectorOfERStat[],Emgu.CV.Text.ERFilter.GroupingMethod,System.String,System.Single)"]

groupingTrainedFileName (Optional)
Type: SystemString
The XML or YAML file with the classifier model (e.g. trained_classifier_erGrouping.xml)
minProbability (Optional)
Type: SystemSingle
The minimum probability for accepting a group.

Return Value

Type: Rectangle
The output of the algorithm that indicates the text regions
See Also