Property VLHoughCircles.TVLHoughCircles.MaxRadius
From Mitov Wiki Doc
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 MaxRadius : Cardinal read FMaxRadius write SetMaxRadius default 0;
C++ Builder:
__property unsigned int MaxRadius = { read=FMaxRadius, write=SetMaxRadius, default=0 };
Summary
Maximal radius of the circles to search for.
Description
Use this property to set the maximal radius of the circles to
search for. By default the maximal radius is set to max(image
width, image height).
Delphi example:
VLHoughCircles1.MaxRadius := 90;
C++ Builder example:
VLHoughCircles1->MaxRadius = 90;
Visual C++(MFC) example:
VLHoughCircles1.MaxRadius = 90;
C# Example:
houghCircles1.MaxRadius = 90;