The CogLineMax type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| Assurance |
Gets or sets the tradeoff between speed and reliability when
FittingMode is set
to RANSAC
mode.
| |
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.) | |
| CoverageThreshold |
Gets or sets the minimum acceptable proportion of inliers relative to
the number of intersected projection regions. Line segments must meet
this constraint to become results.
| |
| DistanceTolerance |
Gets or sets the maximum allowable distance between a line and an inlier
of the line. Edge points must meet this constraint to become inliers of
the line.
| |
| EdgeAngleTolerance |
Gets or sets the maximum allowable angle between a line and an inlier of
the line. Edge points must meet this constraint to become inliers of the
line.
| |
| EdgeDetectionParams |
Gets or sets the parameters for generating edge points from image data.
| |
| ExpectedLineNormal |
Gets or sets the expected line orientation.
| |
| FittingMode |
Gets or sets the method to use when generating candidate lines. If you
select Exhaustive
mode, a candidate line will be generated for every possible pair of edge
points. If you select RANSAC
mode, a candidate line will be generated from a smaller number of
randomly chosen point pairs.
| |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| LengthThreshold |
Gets or sets the minimum acceptable length of a line segment. Line
segments must meet this constraint to become results.
| |
| LineAngleTolerance |
Gets or sets the maximum allowable angle between the normal of a
line and the
ExpectedLineNormal
value. Lines must meet this constraint to become results.
| |
| MaxNumLines |
Gets or sets the maximum number of lines to be found. A LineMaxMulti
license must be available to execute the tool with MaxNumLines set
to greater than or equal to 0.
| |
| Polarity |
Gets or sets the polarity constraint. Edge points must meet this
constraint to become inliers.
| |
| RegionMode |
Gets or sets the technique,
PixelAlignedBoundingBoxAdjustMask
or
PixelAlignedBoundingBox,
used to apply the region to the inspection image.
| |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.) | |
| Timeout |
Gets or sets the maximum amount of time that the inspection is allowed to
execute.
| |
| TimeoutEnabled |
Get or set the applicability of Timeout.
|
See Also