ImageEn, unit ievision

TIEVisionObjectsFinder.setDivisor

TIEVisionObjectsFinder.setDivisor


Declaration

procedure setDivisor(value: int32_t); safecall;


Description

Set the divisor value. A temporary image is created subsampling the source image by the divisor factor.
Object detector will look for the object inside the temporary image, instead of full image.
Default value is 3 (divide source image by 3). For fine (but slow) detection sets to 1.

Parameter Description
value Divisor value


Example

objectfinder.setDivisor(1);
objectsFinder.findIn(image);