View Source Evision.DNN.TextDetectionModelEAST (Evision v0.1.7)

Link to this section Summary

Functions

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.

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.

Get the detection confidence threshold

Get the detection confidence threshold

Set the detection confidence threshold

Set the detection NMS filter threshold

Link to this section Functions

Link to this function

dnn_TextDetectionModel_EAST!(model)

View Source

Raising version of dnn_TextDetectionModel_EAST/1.

Link to this function

dnn_TextDetectionModel_EAST!(model, opts)

View Source

Raising version of dnn_TextDetectionModel_EAST/2.

Link to this function

dnn_TextDetectionModel_EAST(model)

View Source

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.

Positional Arguments
  • model: string.

    Binary file contains trained weights.

Keyword Arguments
  • config: string.

    Text file contains network configuration.

Python prototype (for reference):

TextDetectionModel_EAST(model[, config]) -> <dnn_TextDetectionModel_EAST object>
Link to this function

dnn_TextDetectionModel_EAST(model, opts)

View Source

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.

Positional Arguments
  • model: string.

    Binary file contains trained weights.

Keyword Arguments
  • config: string.

    Text file contains network configuration.

Python prototype (for reference):

TextDetectionModel_EAST(model[, config]) -> <dnn_TextDetectionModel_EAST object>
Link to this function

getConfidenceThreshold!(self)

View Source

Raising version of getConfidenceThreshold/1.

Link to this function

getConfidenceThreshold(self)

View Source

Get the detection confidence threshold

Python prototype (for reference):

getConfidenceThreshold() -> retval

Raising version of getNMSThreshold/1.

Get the detection confidence threshold

Python prototype (for reference):

getNMSThreshold() -> retval
Link to this function

setConfidenceThreshold!(self, confThreshold)

View Source

Raising version of setConfidenceThreshold/2.

Link to this function

setConfidenceThreshold(self, confThreshold)

View Source

Set the detection confidence threshold

Positional Arguments
  • confThreshold: float.

    A threshold used to filter boxes by confidences

Python prototype (for reference):

setConfidenceThreshold(confThreshold) -> retval
Link to this function

setNMSThreshold!(self, nmsThreshold)

View Source

Raising version of setNMSThreshold/2.

Link to this function

setNMSThreshold(self, nmsThreshold)

View Source

Set the detection NMS filter threshold

Positional Arguments
  • nmsThreshold: float.

    A threshold used in non maximum suppression

Python prototype (for reference):

setNMSThreshold(nmsThreshold) -> retval