CogBlobMeasureModeConstants EnumerationCognex VisionPro
Enumeration indicating how a specified measure will be used during execution of blob analysis. Blob measures can either be used as filter criteria or precomputed such that the time required to calculate the measure is part of the blob analysis execution time.

Namespace: Cognex.VisionPro.Blob
Assembly: Cognex.VisionPro.Blob (in Cognex.VisionPro.Blob.dll) Version: 65.1.0.0
Syntax

public enum CogBlobMeasureModeConstants
Members

  Member nameValueDescription
None0 Do not perform any special action regarding the specified measure during execution of blob analysis.
PreCompute1 Precompute the specified measure during execution of blob analysis. Measures that are not precomputed can still be obtained, however, part of the computation may not be performed until the measure is requested.
Filter2 Use the specified measure as a blob filter criterion Blobs can be filtered out of the final results that have a measurement value that falls either inside or outside of a specified range of values.
Remarks

Enumeration indicating how a specified measure will be used during execution of blob analysis. A given measure can be used to filter blobs, or you can specify that a given measure be pre-computed when the blob tool is run. (Precomputing a blob measures helps you get a more accurate measure of the time required to run the tool since by default measures are not computed until you request them.)
See Also