You are here: Start » FIL.NET » FIL.ProfileStripes
Finds pairs of opposite (raising and falling) edges in the input profile.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void ProfileStripes ( FilNet.Profile inProfile, FilNet.Range? inRange, bool inCyclic, FilNet.StripeScanParams inStripeScanParams, float inMinGapWidth, float? inMaxGapWidth, FilNet.LocalBlindness? inLocalBlindness, IList<FilNet.ProfileStripe> outStripes, NullableRef<List<float>> outGapWidths, FilNet.Profile diagResponseProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inProfile | FilNet.Profile | Input profile. | ||
![]() | inRange | FilNet.Range? | |||
![]() | inCyclic | bool | |||
![]() | inStripeScanParams | FilNet.StripeScanParams | StripeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f MaxInnerEdgeMagnitude: Nil StripePolarity: Bright MinStripeWidth: 0.0f MaxStripeWidth: Nil ) | Parameters controlling the stripe extraction process. Default value: StripeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f MaxInnerEdgeMagnitude: Nil StripePolarity: Bright MinStripeWidth: 0.0f MaxStripeWidth: Nil ). | |
![]() | inMinGapWidth | float | <0.0f, INF> | 0.0f | Minimal distance between consecutive stripes. Default value: 0.0f. |
![]() | inMaxGapWidth | float? | <0.0f, INF> | Maximal distance between consecutive stripes. Default value: ftl::NIL. | |
![]() | inLocalBlindness | FilNet.LocalBlindness? | Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL. | ||
![]() | outStripes | System.Collections.Generic.IList<FilNet.ProfileStripe> | Found stripes. | ||
![]() | outGapWidths | FilNet.NullableRef<System.Collections.Generic.List<float>> | Distances between consecutive stripes. Can be null to skip this parameter calculation. | ||
![]() | diagResponseProfile | FilNet.Profile | Profile of the edge (derivative) operator response. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Range exceeds the input profile in ProfileStripes. |
Function Overrides
- ProfileStripes(Profile, Boolean, StripeScanParams, Single, IList<ProfileStripe>)
- ProfileStripes(Profile, Boolean, StripeScanParams, Single, IList<ProfileStripe>, NullableRef<List<Single>>)
- ProfileStripes(Profile, Boolean, StripeScanParams, Single, IList<ProfileStripe>, Profile)
- ProfileStripes(Profile, Boolean, StripeScanParams, Single, IList<ProfileStripe>, NullableRef<List<Single>>, Profile)
- ProfileStripes(Profile, Nullable<Range>, Boolean, StripeScanParams, Single, Nullable<Single>, Nullable<LocalBlindness>, IList<ProfileStripe>)
- ProfileStripes(Profile, Nullable<Range>, Boolean, StripeScanParams, Single, Nullable<Single>, Nullable<LocalBlindness>, IList<ProfileStripe>, Profile)
- ProfileStripes(Profile, Nullable<Range>, Boolean, StripeScanParams, Single, Nullable<Single>, Nullable<LocalBlindness>, IList<ProfileStripe>, NullableRef<List<Single>>)