Struct opencv::dnn::TextDetectionModel_EAST[][src]

pub struct TextDetectionModel_EAST { /* fields omitted */ }
Expand description

This class represents high-level API for text detection DL networks compatible with EAST model.

Configurable parameters:

  • (float) confThreshold - used to filter boxes by confidences, default: 0.5f
  • (float) nmsThreshold - used in non maximum suppression, default: 0.0f

Implementations

Create text detection algorithm from deep learning network

Parameters
  • network: Net object

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.

Parameters
  • model: Binary file contains trained weights.
  • config: Text file contains network configuration.
C++ default parameters
  • config: “”

Trait Implementations

Wrap the specified raw pointer Read more

Return an the underlying raw pointer while consuming this wrapper. Read more

Return the underlying raw pointer. Read more

Return the underlying mutable raw pointer Read more

Executes the destructor for this type. Read more

Performs the conversion.

Performs the conversion.

Set input size for frame. Read more

Set input size for frame. Read more

Set mean value for frame. Read more

Set scalefactor value for frame. Read more

Set flag crop for frame. Read more

Set flag swapRB for frame. Read more

Set preprocessing parameters for frame. Read more

See also Read more

See also Read more

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more

Performs detection Read more

Performs detection Read more

Performs detection Read more

Performs detection Read more

Set the detection confidence threshold Read more

Set the detection NMS filter threshold Read more

Get the detection confidence threshold

Get the detection confidence threshold

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.