ImageEn, unit ievision

TIEVisionImage.getRows

TIEVisionImage.getRows


Declaration

function getRows(startRow: int32_t; endRow: int32_t): TIEVisionImage; safecall;


Description

Create a new TIEVisionImage object that contains the specified range of rows.
No copy is performed, only the actual area is shared among the objects.

Parameter Description
startRow First row to share
endRow Last row (not included) to share


Example

ROI_image := image1.getRows(10, 100);