DGtal
0.6.devel
|
#include <FMMPointFunctors.h>
Public Types | |
typedef TImage | Image |
typedef Image::Point | Point |
typedef Image::Value | Value |
typedef TSet | Set |
Public Member Functions | |
BOOST_CONCEPT_ASSERT ((CImage< TImage >)) | |
BOOST_CONCEPT_ASSERT ((CDigitalSet< TSet >)) | |
BOOST_STATIC_ASSERT ((boost::is_same< Point, typename TSet::Point >::value)) | |
L2SecondOrderLocalDistance (Image &aImg, TSet &aSet) | |
L2SecondOrderLocalDistance (const L2SecondOrderLocalDistance &other) | |
L2SecondOrderLocalDistance & | operator= (const L2SecondOrderLocalDistance &other) |
~L2SecondOrderLocalDistance () | |
Value | operator() (const Point &aPoint) |
void | selfDisplay (std::ostream &out) const |
Data Fields | |
Image * | myImgPtr |
Set * | mySetPtr |
Private Types | |
typedef std::pair< double, Value > | CoeffValue |
typedef std::vector< CoeffValue > | List |
Private Member Functions | |
Value | compute (List &aList) const |
Value | getValue (const Value &aValue1, const Value &aValue2) const |
Aim: Class for the computation of the Euclidean distance at some point p, from the available distance values of some points lying in the neighborhood of p, such that only one of their coordinate differ from the coordinates of p by at most two.
Description of template class 'L2SecondOrderLocalDistance'
Like L2FirstOrderLocalDistance, the computed value is such that the upwind gradient of the distance map is one, but instead of using first-order accurate forward and backward differences, L2SecondOrderLocalDistance uses second-order accurate forward and backward difference whenever there are enough points whose distance values are known in order to evaluate these differences.
It is a model of CPointFunctor.
TImage | model of CImage used for the mapping point-distance value |
TSet | model of CDigitalSet for storing points whose distance value is known |
Definition at line 227 of file FMMPointFunctors.h.
|
private |
Definition at line 247 of file FMMPointFunctors.h.
typedef TImage DGtal::L2SecondOrderLocalDistance< TImage, TSet >::Image |
Definition at line 236 of file FMMPointFunctors.h.
|
private |
Definition at line 248 of file FMMPointFunctors.h.
typedef Image::Point DGtal::L2SecondOrderLocalDistance< TImage, TSet >::Point |
Definition at line 237 of file FMMPointFunctors.h.
typedef TSet DGtal::L2SecondOrderLocalDistance< TImage, TSet >::Set |
Definition at line 242 of file FMMPointFunctors.h.
typedef Image::Value DGtal::L2SecondOrderLocalDistance< TImage, TSet >::Value |
Definition at line 238 of file FMMPointFunctors.h.
|
inline |
|
inline |
|
inline |
DGtal::L2SecondOrderLocalDistance< TImage, TSet >::BOOST_CONCEPT_ASSERT | ( | (CImage< TImage >) | ) |
image
DGtal::L2SecondOrderLocalDistance< TImage, TSet >::BOOST_CONCEPT_ASSERT | ( | (CDigitalSet< TSet >) | ) |
set
DGtal::L2SecondOrderLocalDistance< TImage, TSet >::BOOST_STATIC_ASSERT | ( | (boost::is_same< Point, typename TSet::Point >::value) | ) |
|
inlineprivate |
Returns an approximation of the Euclidean distance at some point, knowing the distance of its neighbors
aList | the distance of (some of) the neighbors |
Definition at line 400 of file FMMPointFunctors.ih.
|
inlineprivate |
Returns the combination of two distance values for the second-order accurate difference
aValue1 | |
aValue2 |
Definition at line 445 of file FMMPointFunctors.ih.
|
inline |
Euclidean distance computation at aPoint , from the available distance values of the 1-neighbors of aPoint .
aPoint | the point for which the distance is computed |
first-order
second-order
Definition at line 297 of file FMMPointFunctors.ih.
References DGtal::findAndGetValue().
|
inline |
Assignment.
other | the object to copy. |
Definition at line 272 of file FMMPointFunctors.ih.
References DGtal::L2SecondOrderLocalDistance< TImage, TSet >::myImgPtr, and DGtal::L2SecondOrderLocalDistance< TImage, TSet >::mySetPtr.
|
inline |
Writes/Displays the object on an output stream.
out | the output stream where the object is written. |
Definition at line 455 of file FMMPointFunctors.ih.
Image* DGtal::L2SecondOrderLocalDistance< TImage, TSet >::myImgPtr |
Aliasing pointer on the underlying image.
Definition at line 253 of file FMMPointFunctors.h.
Referenced by DGtal::L2SecondOrderLocalDistance< TImage, TSet >::operator=().
Set* DGtal::L2SecondOrderLocalDistance< TImage, TSet >::mySetPtr |
Aliasing pointer on the underlying set.
Definition at line 255 of file FMMPointFunctors.h.
Referenced by DGtal::L2SecondOrderLocalDistance< TImage, TSet >::operator=().