Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Paper Review: Polygonal Approximation of Digital Curves to Preserve Original Shapes

Computer Science Paper Review #image processing #polygonal approximation #digital curves #shape preservation

Authors: Daeho Lee, Seung Gwan Lee

Keywords:

  • dominant points
  • consecutive vectors
  • toothbrush shape
  • distance metric
  • smallest perpendicular distance

Q1: How usual calculation of distance is done?

Minor DPs are deleted in approximation. A minor DP is a DP where the perpendicular distance between the point and the straight line is minimum.

a a
 b

Here b is deleted when its distance to the line a-a is minimum.

The perpendicular distance is calculated using

[ d_i = \sqrt{\frac{((x_i - x_a) (y_b - y_a) - (y_i - y_a) (x_b -x_a))^2}{(x_a - x_b)^2 + (y_a - y_b)^2}} ]

for lines between points $p_a$ and $p_b$ and the point $p_i$.

Q2: What is a toothbrush shape?

It’s something like

aaaaaa
bbbbbbbbbbbbbbbbbbbbbb

Hence the toothbrush.

Though I don’t get why is this particularly important.

Q3: Which information is included in distance metric?

Angle acuteness is added to the information described above.

Q4: How the distance metric differs from others?

It includes angle acuteness in the metric and the more acute the angle, the less likely it’s removed from DP set.

Q5: What’s baseline for performance and how does this improve it?

As the number of DPs decrease, RMSE of the new metric decreases. For large number of DPs it doesn’t matter much. (So performance penalty may not pay off)