Table of Contents

Class TextInvoke

Namespace
Emgu.CV.Text
Assembly
Emgu.CV.dll

This class wraps the functional calls to the OpenCV Text modules

public static class TextInvoke
Inheritance
TextInvoke
Inherited Members

Methods

ComputeNMChannels(IInputArray, IOutputArrayOfArrays, ERFilterNMMode)

Compute the different channels to be processed independently in the N&M algorithm.

public static void ComputeNMChannels(IInputArray src, IOutputArrayOfArrays channels, ERFilterNMMode mode = ERFilterNMMode.RGBLGrad)

Parameters

src IInputArray

Source image. Must be RGB CV_8UC3.

channels IOutputArrayOfArrays

Output vector of Mat where computed channels are stored.

mode ERFilterNMMode

Mode of operation

MSERsToERStats(IInputArray, VectorOfVectorOfPoint, VectorOfVectorOfERStat)

Converts MSER contours (vector of point) to ERStat regions.

public static void MSERsToERStats(IInputArray image, VectorOfVectorOfPoint contours, VectorOfVectorOfERStat regions)

Parameters

image IInputArray

Source image CV_8UC1 from which the MSERs where extracted.

contours VectorOfVectorOfPoint

Input vector with all the contours (vector of Point).

regions VectorOfVectorOfERStat

Output where the ERStat regions are stored.