Tesseract.tess_delete!Function
tess_delete!(
    inst::TessInst
)::Nothing

Destroy the Tesseract object and release any associated memory.

Arguments:

TNameDefaultDescription
RinstThe instance to free.

Details:

This method is called automatically by the garbage collector but can be called manually to release the object early. This method can be called multiple times without any negative effects.

Once tess_delete!() is called on an object passing the object to any other library call will result in an error.

Note: This method is not thread safe.

source
tess_delete!(
    pipe::TessPipeline,
    wait::Bool = true
)

Release all resources associated with the pipeline.

Arguments:

TNameDefaultDescription
RpipeThe pipeline to release.
OwaittrueWait for the tasks to complete?

See also: TessPipeline

source