TextInvokeMSERsToERStats Method |
http://www.emgu.com
Converts MSER contours (vector of point) to ERStat regions.
Namespace:
Emgu.CV.Text
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void MSERsToERStats(
IInputArray image,
VectorOfVectorOfPoint contours,
VectorOfVectorOfERStat regions
)
Public Shared Sub MSERsToERStats (
image As IInputArray,
contours As VectorOfVectorOfPoint,
regions As VectorOfVectorOfERStat
)
public:
static void MSERsToERStats(
IInputArray^ image,
VectorOfVectorOfPoint^ contours,
VectorOfVectorOfERStat^ regions
)
static member MSERsToERStats :
image : IInputArray *
contours : VectorOfVectorOfPoint *
regions : VectorOfVectorOfERStat -> unit
Parameters
- image
- Type: Emgu.CVIInputArray
Source image CV_8UC1 from which the MSERs where extracted. - contours
- Type: Emgu.CV.UtilVectorOfVectorOfPoint
Input vector with all the contours (vector of Point). - regions
- Type: Emgu.CV.TextVectorOfVectorOfERStat
Output where the ERStat regions are stored.
See Also