mcFindPhase Enumeration
|
|
Values for the McThreshold.AutoFindPhase property and for theMcThreshold.PhaseToFind argument for the McThreshold.FindIntensityRange method.
Namespace:
MediaCy.IQL.Features
Assembly:
MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcFindPhase
Members
| Member name | Value | Description |
---|
| mcfpCurrent | -1 | for the PhaseToFind argument for the FindIntensityRange method. Finds whichever phase is already set in the AutoFindPhase
property. |
| mcfpDarkest | 0 | Lowest (darkest) thresholds phase (intensity range).This is equivalent to phase 0 always. |
| mcfpBrightest | 65535 | Highest (brightest) thresholds phase (intensityrange). This will always be Threshold.Histogram.MaxPhaseNumber-1, which in
turn will depend on the Method argument to any
Threshold.Histogram.SetThresholdParameters call. |
| mcfpManual | 65536 | For the AutoFindPhase property. IntensityMin andIntensityMax threshold levels are user defined. |
| mcfpIgnoreAoi | 131072 | If this bit is set, then auto phase detectionand thresholding covers the entire source McImage. If clear (the default),
auto phase detection and thresholding covers only those pixels within any
source McImage.Aoi. This AutoFindPhase property bit also controls whether
the region detected by Execute when it is given a SeedPoint is restricted
to the Aoi --- if mcfpIgnoreAoi is set, then it is not restricted to the
Aoi, otherwise it is. |
RemarksIn addition to the enumerations, a phase number from zero (the darkest)
to McThreshold.Histogram.MaxThresholdPhases-1 may be given for these methods.
Also the mcfpIgnoreAoi bit may be OR'ed into the property value to cause the Aoi
to be ignored during both phase intensity range detection and the threshold
Execute operation.
See Also