Problem
- Line-equation algo introduces error.
- This error accumulates along the iteration, if we start search from each (prev+1) location
- Error is due to the "min-dist" scheme, which ignores the actual numerical tangential error.
- There has to be limitation in tangential error.
- What would be the threshold?
- Outer/inner edges are noise signal.
- We expect that they should be 1v1 relationship, while in reality they are not due to stings and other noises.
- Tangential Redundancy: should be defined as "if two inner points find a common outer pair, then one of them is redundant."
- In Case #3, preserve only the 1st inner point along the tangential direction.
- Since inner signal has bigger tangential density, we need to remove inner-edge redundancy first.
- Bottom has the most redundancy because it is the most 2D-ish among the tertiary edges.
- Too strict line-equation would miss out bottom band completely.
- Too loose line-equation would carry neighbor and select wrong band.
- Bottom has to be found through 2D measure.
- We need to try the sidewall-tip idea in 1D, and ensure no redundancy in the other 1D.
- Bottom tangential redundancy can be removed by assuming bottom depends on both edges.
- W2Z Reference should use "majority" instead of "mean".
- Do regular tertiary search based on inner edge.
- Do redundancy check against outer-edge along the way instead of a pre-step.
- After inner/outer pair determined, find bottom band with inner/outer line-equation.
- For bottom, when using minimum point-to-line distance measure, should discard redundant result (pick the first non-overlap point from sorted distance list).

No comments:
Post a Comment