Class VLHoughCircles.TVLHoughCircles
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(6 intermediate revisions by one user not shown) | |||
Line 16: | Line 16: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TVLHoughCircles = '''class'''( [[Class VLVisionStreamTypes.TVLQueueVisionComponent|TVLQueueVisionComponent]] ) | + | '''type''' TVLHoughCircles = '''class'''( [[Class VLVisionStreamTypes.TVLQueueVisionComponent|TVLQueueVisionComponent, IVLCircles, TVLOWCirclesSourcePin]] ) |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
Line 28: | Line 28: | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' | + | '''public ref class''' HoughCircles : [[Class VLVisionStreamTypes.TVLQueueVisionComponent|Mitov.VisionLab.QueueVisionComponent]] |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 36: | Line 36: | ||
Use this component to find circles in the image using Hough | Use this component to find circles in the image using Hough | ||
transform. | transform. | ||
+ | |||
+ | |||
+ | |||
+ | <b>Diagram:</b> | ||
+ | |||
+ | [[Image:VLHoughCircles_Preview.png]] | ||
Line 87: | Line 93: | ||
=== Published === | === Published === | ||
*[[Property SLCommonFilter.TSLBasicThreadedEnableFilter.Enabled|Enabled]] | *[[Property SLCommonFilter.TSLBasicThreadedEnableFilter.Enabled|Enabled]] | ||
− | |||
− | |||
− | |||
== From [[Class SLCommonFilter.TSLBasicThreadedFilter|TSLBasicThreadedFilter]] == | == From [[Class SLCommonFilter.TSLBasicThreadedFilter|TSLBasicThreadedFilter]] == |
Latest revision as of 00:30, 26 June 2013
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.
Package: VisionLabPkg
Unit: VLHoughCircles
Inherits: TVLQueueVisionComponent
Contents |
Syntax
Delphi:
type TVLHoughCircles = class( TVLQueueVisionComponent, IVLCircles, TVLOWCirclesSourcePin )
C++ Builder:
class TVLHoughCircles : public TVLQueueVisionComponent
Visual C++ (MFC):
class CTVLHoughCircles : public CTVLQueueVisionComponent
C# (.NET):
public ref class HoughCircles : Mitov.VisionLab.QueueVisionComponent
Summary
Finds circles in the image using Hough transform.
Description
Use this component to find circles in the image using Hough transform.
Diagram:
Example:
Properties
Published
- Smooth - Smoothing will be performed on the image.
- Threshold - Threshold of the Hough detection.
- Resolution - Resolution of the accumulator used to detect centers of the circles.
- MinDistance - Minimum distance between centers of the detected circles.
- MinRadius - Minimal radius of the circles to search for.
- MaxRadius - Maximal radius of the circles to search for.
Pins
- OutputPin - The detected circles data output pin of the component.
Events
- OnCirclesDetect - Occurs each time circles are detected.
From TVLQueueVisionComponent
Properties
Public
- CurrentImage - The most current processed image.
Pins
- ImageOutputPin - The Video Output Pin of the filter.