Property VLHoughCircles.TVLHoughCircles.MinDistance
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: TVLHoughCircles
Contents |
Syntax
Delphi:
property MinDistance : Real read FMinDistance write SetMinDistance default 50;
C++ Builder:
__property double MinDistance = { read=FMinDistance, write=SetMinDistance, default=50 };
Summary
Minimum distance between centers of the detected circles.
Description
Use this property to set the minimum distance between centers
of the detected circles. If the parameter is too small,
multiple neighbor circles may be falsely detected in addition
to a true one. If it is too large, some circles may be
missed.
Delphi example:
VLHoughCircles1.MinDistance := 50;
C++ Builder example:
VLHoughCircles1->MinDistance = 50;
Visual C++(MFC) example:
VLHoughCircles1.MinDistance = 50;
C# Example:
houghCircles1.MinDistance = 50;