DGtal
1.5.beta
|
Aim: On-line computation Computation of the longest shortcut according to the Fréchet distance for a given error. See related article: Sivignon, I., (2011). A Near-Linear Time Guaranteed Algorithm for Digital Curve Simplification under the Fréchet Distance. DGCI 2011. Retrieved from http://link.springer.com/chapter/10.1007/978-3-642-19867-0_28. More...
#include <DGtal/geometry/curves/FrechetShortcut.h>
Data Structures | |
class | Backpath |
class | Cone |
struct | Tools |
Public Types | |
typedef TInteger | Integer |
typedef TIterator | ConstIterator |
typedef FrechetShortcut< ConstIterator, Integer > | Self |
typedef FrechetShortcut< std::reverse_iterator< ConstIterator >, Integer > | Reverse |
typedef IteratorCirculatorTraits< ConstIterator >::Value | Point |
typedef IteratorCirculatorTraits< ConstIterator >::Value | Vector |
typedef Vector::Coordinate | Coordinate |
Public Member Functions | |
BOOST_CONCEPT_ASSERT ((concepts::CInteger< TInteger >)) | |
FrechetShortcut () | |
FrechetShortcut (double error) | |
void | init (const ConstIterator &it) |
FrechetShortcut | getSelf () |
FrechetShortcut (const Self &other) | |
FrechetShortcut & | operator= (const Self &other) |
Reverse | getReverse () const |
bool | operator== (const Self &other) const |
bool | operator!= (const Self &other) const |
~FrechetShortcut () | |
bool | isExtendableFront () |
bool | extendFront () |
ConstIterator | begin () const |
ConstIterator | end () const |
std::string | className () const |
bool | isValid () const |
bool | updateBackpath () |
bool | testUpdateBackpath () |
bool | isBackpathOk () |
void | resetBackpath () |
void | resetCone () |
bool | testUpdateWidth () |
Cone | computeNewCone () |
bool | updateWidth () |
void | selfDisplay (std::ostream &out) const |
Protected Attributes | |
double | myError |
std::vector< Backpath > | myBackpath |
Cone | myCone |
ConstIterator | myBegin |
ConstIterator | myEnd |
Aim: On-line computation Computation of the longest shortcut according to the Fréchet distance for a given error. See related article: Sivignon, I., (2011). A Near-Linear Time Guaranteed Algorithm for Digital Curve Simplification under the Fréchet Distance. DGCI 2011. Retrieved from http://link.springer.com/chapter/10.1007/978-3-642-19867-0_28.
Description of class 'FrechetShortcut'
The algorithm we propose uses an approximation of the Fréchet distance, but a guarantee over the quality of the simplification is proved. Moreover, even if the theoretical complexity of the algorithm is in \( O(n log(n)) \), experiments show a linear behaviour in practice.
We denote by \( error(i,j) \) the Fréchet distance between the segment \([p_ip_j]\) and the part of the curve between the points \(p_i\) and \(p_j\). The approximation of the Fréchet distance is based on the fact that \( error(i,j) \) can be upper and lower bounded by a function of two values, namely \( w(i,j)$ \) and \( b(i,j) \), where \( w(i,j)$ \) is the width of the points between \(p_i\) and \(p_j\) in the direction \( p_ip_j \) and \( b(i,j) \) is the length of the longest backpath in this direction.
Then, the algorithm consists in greedily reading the points of the curves from a first point given by myBegin, while updating the values \( w(i,j) \) and \( b(i,j) \) on the fly.
This class is a model of the concept CForwardSegmentComputer
It should be used with the Curve object (defined in StdDefs.h) and its PointsRange as follows:
TIterator | Iterator type on 2D digital points, TInteger type of integer |
Definition at line 110 of file FrechetShortcut.h.
typedef TIterator DGtal::FrechetShortcut< TIterator, TInteger >::ConstIterator |
Definition at line 123 of file FrechetShortcut.h.
typedef Vector::Coordinate DGtal::FrechetShortcut< TIterator, TInteger >::Coordinate |
Definition at line 130 of file FrechetShortcut.h.
typedef TInteger DGtal::FrechetShortcut< TIterator, TInteger >::Integer |
Definition at line 118 of file FrechetShortcut.h.
typedef IteratorCirculatorTraits<ConstIterator>::Value DGtal::FrechetShortcut< TIterator, TInteger >::Point |
Definition at line 128 of file FrechetShortcut.h.
typedef FrechetShortcut<std::reverse_iterator<ConstIterator>,Integer> DGtal::FrechetShortcut< TIterator, TInteger >::Reverse |
Definition at line 125 of file FrechetShortcut.h.
typedef FrechetShortcut<ConstIterator,Integer> DGtal::FrechetShortcut< TIterator, TInteger >::Self |
Definition at line 124 of file FrechetShortcut.h.
typedef IteratorCirculatorTraits<ConstIterator>::Value DGtal::FrechetShortcut< TIterator, TInteger >::Vector |
Definition at line 129 of file FrechetShortcut.h.
DGtal::FrechetShortcut< TIterator, TInteger >::FrechetShortcut | ( | ) |
Default constructor. not valid
DGtal::FrechetShortcut< TIterator, TInteger >::FrechetShortcut | ( | double | error | ) |
Constructor with initialisation
error | an iterator on 2D points |
DGtal::FrechetShortcut< TIterator, TInteger >::FrechetShortcut | ( | const Self & | other | ) |
Copy constructor.
other | the object to clone. |
|
inline |
ConstIterator DGtal::FrechetShortcut< TIterator, TInteger >::begin | ( | ) | const |
DGtal::FrechetShortcut< TIterator, TInteger >::BOOST_CONCEPT_ASSERT | ( | (concepts::CInteger< TInteger >) | ) |
std::string DGtal::FrechetShortcut< TIterator, TInteger >::className | ( | ) | const |
Cone DGtal::FrechetShortcut< TIterator, TInteger >::computeNewCone | ( | ) |
Computes the cone defined by the point *myBegin and the new point myEnd + 1 and intersect it with myCone (unchanged)
ConstIterator DGtal::FrechetShortcut< TIterator, TInteger >::end | ( | ) | const |
bool DGtal::FrechetShortcut< TIterator, TInteger >::extendFront | ( | ) |
Tests whether the FrechetShortcut can be extended at the front. Extend the FrechetShortcut if yes.
Reverse DGtal::FrechetShortcut< TIterator, TInteger >::getReverse | ( | ) | const |
FrechetShortcut DGtal::FrechetShortcut< TIterator, TInteger >::getSelf | ( | ) |
void DGtal::FrechetShortcut< TIterator, TInteger >::init | ( | const ConstIterator & | it | ) |
Initialisation.
it | an iterator on 2D points |
bool DGtal::FrechetShortcut< TIterator, TInteger >::isBackpathOk | ( | ) |
Test if there exist a backpath of length greater than the threshold
bool DGtal::FrechetShortcut< TIterator, TInteger >::isExtendableFront | ( | ) |
Tests whether the FrechetShortcut can be extended at the front.
bool DGtal::FrechetShortcut< TIterator, TInteger >::isValid | ( | ) | const |
Checks the validity/consistency of the object.
bool DGtal::FrechetShortcut< TIterator, TInteger >::operator!= | ( | const Self & | other | ) | const |
Difference operator.
other | the object to compare with. |
FrechetShortcut& DGtal::FrechetShortcut< TIterator, TInteger >::operator= | ( | const Self & | other | ) |
Assignment.
other | the object to copy. |
bool DGtal::FrechetShortcut< TIterator, TInteger >::operator== | ( | const Self & | other | ) | const |
Equality operator.
other | the object to compare with. |
void DGtal::FrechetShortcut< TIterator, TInteger >::resetBackpath | ( | ) |
Reset the backpaths before the computation of a new shortcut
void DGtal::FrechetShortcut< TIterator, TInteger >::resetCone | ( | ) |
Reset the cone before the computation of a new shortcut
void DGtal::FrechetShortcut< TIterator, TInteger >::selfDisplay | ( | std::ostream & | out | ) | const |
Writes/Displays the object on an output stream.
out | the output stream where the object is written. |
bool DGtal::FrechetShortcut< TIterator, TInteger >::testUpdateBackpath | ( | ) |
Test if there exist a backpath of length greater than the threshold after the addition of the point pointed by *myEnd+1, but does not modify myBackpath.
bool DGtal::FrechetShortcut< TIterator, TInteger >::testUpdateWidth | ( | ) |
Test if the new direction belongs to the new cone, but does not modify myCone
bool DGtal::FrechetShortcut< TIterator, TInteger >::updateBackpath | ( | ) |
Updates the backpaths (one per octant) according to the new point
bool DGtal::FrechetShortcut< TIterator, TInteger >::updateWidth | ( | ) |
Updates the width according to the new point
|
protected |
Vector of 8 backpaths, one per octant. Stores all the information needed to update the length of the longest backpath.
Definition at line 864 of file FrechetShortcut.h.
|
protected |
ConstIterator pointing to the back of the shortcut
Definition at line 874 of file FrechetShortcut.h.
|
protected |
Cone used to update the width
Definition at line 869 of file FrechetShortcut.h.
|
protected |
ConstIterator pointing to the front of the shortcut
Definition at line 878 of file FrechetShortcut.h.
|
protected |
Error parameter used to compute the shortcut
Definition at line 858 of file FrechetShortcut.h.