OpenWalnut
1.4.0
|
Represents a neural pathway. More...
#include <WFiber.h>
Public Member Functions | |
WFiber (const std::vector< WPosition > &points) | |
Constructs a new fiber out of WPositions. | |
WFiber () | |
Creates an empty fiber. | |
Static Public Member Functions | |
static double | distDST (double thresholdSquare, const WFiber &q, const WFiber &r) |
This is the Smaller thresholded distance as described by Zhang: http://dx.doi.org/10.1109/TVCG.2008.52 . | |
static double | distDLT (double thresholdSquare, const WFiber &q, const WFiber &r) |
This is the Larger thresholded distance as described by Zhang: http://dx.doi.org/10.1109/TVCG.2008.52 . | |
Friends | |
class | WFiberTest |
WFiber::WFiber | ( | const std::vector< WPosition > & | points | ) | [explicit] |
Constructs a new fiber out of WPositions.
points | Reference to the points which belong to this fiber |
Definition at line 88 of file WFiber.cpp.
WFiber::WFiber | ( | ) |
Creates an empty fiber.
Definition at line 93 of file WFiber.cpp.
double WFiber::distDLT | ( | double | thresholdSquare, |
const WFiber & | q, | ||
const WFiber & | r | ||
) | [static] |
This is the Larger thresholded distance as described by Zhang: http://dx.doi.org/10.1109/TVCG.2008.52 .
thresholdSquare | Threshold upto which the distances should be ignored given as square for reasons of performance. |
q | First fiber |
r | Second fiber |
Definition at line 104 of file WFiber.cpp.
Referenced by WFiberTest::testDLTisSymmetric(), and WFiberTest::testDTMeasure().
double WFiber::distDST | ( | double | thresholdSquare, |
const WFiber & | q, | ||
const WFiber & | r | ||
) | [static] |
This is the Smaller thresholded distance as described by Zhang: http://dx.doi.org/10.1109/TVCG.2008.52 .
thresholdSquare | Threshold upto which the distances should be ignored given as square for reasons of performance. |
q | First fiber |
r | Second fiber |
Definition at line 98 of file WFiber.cpp.
Referenced by WFiberTest::testDSTisSymmetric(), and WFiberTest::testDTMeasure().