Property VLHoughCircles.TVLHoughCircles.MaxRadius
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' MaxRadius : Cardinal '''read''' FMaxRadius '''write''' SetMaxRadius; | + | '''property''' MaxRadius : Cardinal '''read''' FMaxRadius '''write''' SetMaxRadius '''default''' 0; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' unsigned int MaxRadius = { '''read'''=FMaxRadius, '''write'''=SetMaxRadius }; | + | '''__property''' unsigned int MaxRadius = { '''read'''=FMaxRadius, '''write'''=SetMaxRadius, '''default'''=0 }; |
</code> | </code> | ||
Latest revision as of 17:19, 18 October 2012
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;