Tesseract.tess_set_paramFunction
tess_set_param(
    inst::TessInst,
    name::AbstractString,
    value::Integer
)::Bool

Sets an integer variable in th Tesseract engine. Returns false if the parameter was not found.

Arguments:

TNameDefaultDescription
RinstThe instance to set the variable in
RnameThe name of the variable to set.
RvalueThe value to set.

Examples:

julia> using Tesseract

julia> download_languages()
true

julia> instance = TessInst()
Allocated Tesseract instance.

julia> tess_set_param(instance, "edges_min_nonhole", 12)
true

See also: tess_params, tess_params_parsed, tess_get_param

source
tess_set_param(
    inst::TessInst,
    name::AbstractString,
    value::Bool
)::Bool

Sets a boolean variable in th Tesseract engine. Returns false if the parameter was not found.

Arguments:

TNameDefaultDescription
RinstThe instance to set the variable in
RnameThe name of the variable to set.
RvalueThe value to set.

Examples:

julia> using Tesseract

julia> download_languages()
true

julia> instance = TessInst()
Allocated Tesseract instance.

julia> tess_set_param(instance, "edges_debug", false)
true

See also: tess_params, tess_params_parsed, tess_get_param

source
tess_set_param(
    inst::TessInst,
    name::AbstractString,
    value::Float64
)::Bool

Sets a Float64 variable in th Tesseract engine. Returns false if the parameter was not found.

Arguments:

TNameDefaultDescription
RinstThe instance to set the variable in
RnameThe name of the variable to set.
RvalueThe value to set.

Examples:

julia> using Tesseract

julia> download_languages()
true

julia> instance = TessInst()
Allocated Tesseract instance.

julia> tess_set_param(instance, "classify_min_slope", 0.414214)
true

See also: tess_params, tess_params_parsed, tess_get_param

source
tess_set_param(
    inst::TessInst,
    name::AbstractString,
    value::AbstractString
)::Bool

Sets a string variable in th Tesseract engine. Returns false if the parameter was not found.

Arguments:

TNameDefaultDescription
RinstThe instance to set the variable in
RnameThe name of the variable to set.
RvalueThe value to set.

Examples:

julia> using Tesseract

julia> download_languages()
true

julia> instance = TessInst()
Allocated Tesseract instance.

julia> tess_set_param(instance, "page_separator", "\f")
true

See also: tess_params, tess_params_parsed, tess_get_param

source