 | OcrApiGetStrips Method |
Get textlines and strips of image regions as a leptonica-style Boxa, Pixa pair, in reading order.Enables downstream handling of non-rectangular regions.
Namespace:
Patagames.Ocr
Assembly:
Patagames.Ocr (in Patagames.Ocr.dll) Version: 4.2.411
Syntaxpublic void GetStrips(
out OcrBoxa boxa,
out OcrPixa pixa,
out int[] blockIds
)
Public Sub GetStrips (
<OutAttribute> ByRef boxa As OcrBoxa,
<OutAttribute> ByRef pixa As OcrPixa,
<OutAttribute> ByRef blockIds As Integer()
)
public:
void GetStrips(
[OutAttribute] OcrBoxa^% boxa,
[OutAttribute] OcrPixa^% pixa,
[OutAttribute] array<int>^% blockIds
)
member GetStrips :
boxa : OcrBoxa byref *
pixa : OcrPixa byref *
blockIds : int[] byref -> unit
public void GetStrips(
/** @attribute OutAttribute */ /** @ref */OcrBoxa boxa,
/** @attribute OutAttribute */ /** @ref */OcrPixa pixa,
/** @attribute OutAttribute */ /** @ref */int[] blockIds
)
function GetStrips(boxa, pixa, blockIds);
Parameters
- boxa
- Type: Patagames.OcrOcrBoxa
The array ob boxes - pixa
- Type: Patagames.OcrOcrPixa
The array of lepronica pictures - blockIds
- Type: SystemInt32
The array of block-id of each line
Remarks
See Also