Click or drag to resize

IMcProfileEdgesExWeightedThresholds Property

After a FindEdges call, threshold values in the WeightedProfiles for an edge.

Namespace:  MediaCy.IQL.Features
Assembly:  MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
Syntax
VB
ReadOnly Property WeightedThresholds ( 
	<OptionalAttribute> Selector As Object
) As Object
	Get

Parameters

Selector (Optional)
Type: SystemObject
An empty variant, a single negative value, a single index value, or an array of zero or more index values (negative index values are legal but will be ignored). If the Selector argument is a non-negative scalar index value, then the weighted profile threshold for just the indicated profile is returned as a double value. The index value must fall between zero and ProfilesAncestor.CountOfProfiles-1. If the Selector argument is Empty, Error or Null, or any negative scalar value, then profile thresholds are returned or assigned to for all ProfilesAncestor.CountOfProfiles profiles. In this case, the returned value or assigning value will be an array of double, where each value is the weighted profile's threshold. If Selector is an array, then zero or positive values are treated as indices into the WeightedProfiles profiles, negative values are legal but ignored. In this case, weighted profile thresholds only for the indicated profiles, and the returned value is an array of double, with each giving the threshold value for one weighted profile. Index values greater or equal to the ProfilesAncestor.CountOfProfiles property are illegal.

Property Value

Type: Object
Remarks
This property exposes the cut-off thresholds used for detecting edges on the last FindEdges call. These thresholds are the values in each weighted profile above which edges are placed (see the McProfileEdges.ThresholdForEdge property for a discussion of how that value is adjusted to come up with an actual weighted threshold value). Note that the weighted threshold will be adjusted to reflect the MinEdgesPerProfile and MaxEdgesPerProfile constraints, if they were applied.
See Also