Tesseract.TessPipelineType
mutable struct TessPipeline
    inst::TessInst
    ptr::Ptr{Cvoid}
    tasks::Vector{PipelineTask}
    types::Vector{ResultRendererType}
end

Allows the client to process multiple images in sequence.

Values:

NameDescription
instThe TessInst that will be processing the images.
ptrThe Tesseract pipeline that will be outputing the data.
taskThe list of background tasks associated with pipeline.
typesThe list of renderers used in the pipeline.

See also: tess_run_pipeline

source
Tesseract.TessPipelineMethod
TessPipeline(
    inst::TessInst
)

Construct a new instance of the object. Registers a finalizer to clean up allocated resources.

NameDescription
instThe TessInst that will be processing the images.

See also: tess_run_pipeline

source