Tesseract.pix_read_jp2kFunction
pix_read_jp2k(
    filename::AbstractString;
    reduction::Integer = Int32(1),
    box::Union{PixBox, Nothing} = nothing
)::Union{Pix, Nothing}

Read a JP2K image from the specified file. Returns nothing on error.

Arguments:

TNameDefaultDescription
RfilenameThe name of the JP2K file to load.
OreductionInt32(1)Load a reduced version of the image from the file.
OboxnothingSpecifies a region to extract from the image.

Restrictions:

  • reduction - Must be a factor of 2.
source
pix_read_jp2k(
    stream::IO;
    reduction::Integer = Int32(1),
    box::Union{PixBox, Nothing} = nothing
)::Union{Pix, Nothing}

Read a JP2K image from the specified stream. Returns nothing on error.

Arguments:

TNameDefaultDescription
RstreamThe IO stream to read the JP2K file from.
OreductionInt32(1)Load a reduced version of the image from the file.
OboxnothingSpecifies a region to extract from the image.

Restrictions:

  • reduction - Must be a factor of 2.

Details:

This implementation mirrors the API provided by Leptonica when you pass in a FILE pointer. This assumes that the remainder of the stream contains a JP2K image.

source
pix_read_jp2k(
    data::AbstractArray{UInt8};
    reduction::Integer = Int32(1),
    box::Union{PixBox, Nothing} = nothing
)::Union{Pix, Nothing}

Read a JP2K image from the byte array. Returns nothing on error.

Arguments:

TNameDefaultDescription
RdataThe byte array to read the JP2K image from.
OreductionInt32(1)Load a reduced version of the image from the file.
OboxnothingSpecifies a region to extract from the image.

Restrictions:

  • reduction - Must be a factor of 2.
source