Class VLCanny.TVLCanny
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 36: | Line 36: | ||
Use this component to perform Canny algorithm for edge | Use this component to perform Canny algorithm for edge | ||
detection. | detection. | ||
+ | |||
+ | |||
+ | |||
+ | <b>Diagram:</b> | ||
+ | |||
+ | [[Image:VLCanny_Preview.png]] | ||
Line 89: | Line 95: | ||
=== Published === | === Published === | ||
*[[Property SLCommonFilter.TSLBasicThreadedEnableFilter.Enabled|Enabled]] | *[[Property SLCommonFilter.TSLBasicThreadedEnableFilter.Enabled|Enabled]] | ||
− | |||
− | |||
− | |||
== From [[Class SLCommonFilter.TSLBasicThreadedFilter|TSLBasicThreadedFilter]] == | == From [[Class SLCommonFilter.TSLBasicThreadedFilter|TSLBasicThreadedFilter]] == |
Revision as of 20:29, 10 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: VLCanny
Inherits: TVLCommonROIFilter
Contents |
Syntax
Delphi:
type TVLCanny = class( TVLCommonROIFilter )
C++ Builder:
class TVLCanny : public TVLCommonROIFilter
Visual C++ (MFC):
class CTVLCanny : public CTVLCommonROIFilter
C# (.NET):
public ref class TVLCanny : Mitov.VisionLab.CommonROIFilter
Summary
Canny edge detection.
Description
Use this component to perform Canny algorithm for edge detection.
Diagram:
Example:
Original Image: | Canny LowThreshold := 70; |
HighThreshold := 90 : | |
Properties
Published
- LowThreshold - Lower threshold for edges detection.
- HighThreshold - Upper threshold for edges detection.
From TVLCommonROIFilter
Properties
Published
From TVLCommonFilter
Properties
Public
Methods
Public
- procedure ProcessFrame(Image : IVLImageBuffer)
- procedure ProcessFrame(InImage : IVLImageBuffer; var OutImage : IVLImageBuffer)
- procedure ProcessBitmap(InBitmap : TBitmap; OutBitmap : TBitmap)