Table of Contents

Constructor TextDetectionModelEAST

Namespace
OpenCvSharp.Dnn
Assembly
OpenCvSharp.dll

TextDetectionModelEAST(string, string?)

Create text detection model from network represented in one of the supported formats. An order of @p model and @p config arguments does not matter.

public TextDetectionModelEAST(string model, string? config = null)

Parameters

model string

Binary file contains trained weights.

config string

Text file contains network configuration.

TextDetectionModelEAST(Net)

Create model from deep learning network.

public TextDetectionModelEAST(Net network)

Parameters

network Net

Net object.