Property VLHaarDetectObjects.TVLHaarSearching.MinNeighbors
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLHaarSearching
Contents |
Syntax
Delphi:
property MinNeighbors : Integer read FMinNeighbors write SetMinNeighbors default 3;
C++ Builder:
__property int MinNeighbors = { read=FMinNeighbors, write=SetMinNeighbors, default=3 };
Summary
Specifies the minimum number (minus 1) of neighbor rectangles that makes up an object.
Description
Use this property to specify the minimum number (minus 1) of
neighbor rectangles that makes up an object. All the groups
of a smaller number of rectangles than MinNeighbors-1 are
rejected. If MinNeighbors is 0, the function does not do any
grouping at all and returns all the detected candidate
rectangles, which may be useful if the user wants to apply a
customized grouping procedure.