TTK
|
TTK processing package for the topological simplification of scalar data. More...
#include <QuadrangulationSubdivision.h>
Public Member Functions | |
QuadrangulationSubdivision () | |
void | setSubdivisionLevel (const unsigned int value) |
void | setRelaxationIterations (const unsigned int value) |
void | setLockInputExtrema (const bool value) |
void | setLockAllInputVertices (const bool value) |
void | setShowResError (const bool value) |
void | setHausdorffLevel (const float value) |
void | setInputQuads (void *const address, unsigned int size) |
void | setInputVertices (void *const address, unsigned int size) |
void | setInputVertexIdentifiers (void *const address, unsigned int size) |
void | preconditionTriangulation (AbstractTriangulation *const triangl) |
template<typename triangulationType = AbstractTriangulation> | |
int | execute (const triangulationType &triangulation) |
template<typename triangulationType > | |
ttk::SimplexId | findEdgeMiddle (const std::array< SimplexId, 2 > &e, const triangulationType &triangulation) const |
Public Member Functions inherited from ttk::Debug | |
Debug () | |
~Debug () override | |
virtual int | setDebugLevel (const int &debugLevel) |
int | setWrapper (const Wrapper *wrapper) override |
int | printMsg (const std::string &msg, const debug::Priority &priority=debug::Priority::INFO, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printMsg (const std::vector< std::string > &msgs, const debug::Priority &priority=debug::Priority::INFO, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printErr (const std::string &msg, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cerr) const |
int | printWrn (const std::string &msg, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cerr) const |
int | printMsg (const std::string &msg, const double &progress, const double &time, const int &threads, const double &memory, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::PERFORMANCE, std::ostream &stream=std::cout) const |
int | printMsg (const std::string &msg, const double &progress, const double &time, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::PERFORMANCE, std::ostream &stream=std::cout) const |
int | printMsg (const std::string &msg, const double &progress, const double &time, const int &threads, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::PERFORMANCE, std::ostream &stream=std::cout) const |
int | printMsg (const std::string &msg, const double &progress, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::PERFORMANCE, std::ostream &stream=std::cout) const |
int | printMsg (const std::string &msg, const double &progress, const debug::Priority &priority, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printMsg (const std::vector< std::vector< std::string > > &rows, const debug::Priority &priority=debug::Priority::INFO, const bool hasHeader=true, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printMsg (const debug::Separator &separator, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::INFO, std::ostream &stream=std::cout) const |
int | printMsg (const debug::Separator &separator, const debug::Priority &priority, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printMsg (const std::string &msg, const debug::Separator &separator, const debug::LineMode &lineMode=debug::LineMode::NEW, const debug::Priority &priority=debug::Priority::INFO, std::ostream &stream=std::cout) const |
void | setDebugMsgPrefix (const std::string &prefix) |
Public Member Functions inherited from ttk::BaseClass | |
BaseClass () | |
virtual | ~BaseClass ()=default |
int | getThreadNumber () const |
virtual int | setThreadNumber (const int threadNumber) |
Protected Attributes | |
SimplexId | vertexNumber_ {} |
unsigned int | SubdivisionLevel {1} |
unsigned int | RelaxationIterations {10} |
bool | LockInputExtrema {false} |
bool | LockAllInputVertices {false} |
bool | ShowResError {false} |
float | HausdorffLevel {200.F} |
unsigned int | inputQuadNumber_ {} |
Quad * | inputQuads_ {} |
unsigned int | inputVertexNumber_ {} |
Point * | inputVertices_ {} |
std::vector< Quad > | outputQuads_ {} |
std::vector< Point > | outputPoints_ {} |
FlatJaggedArray | quadNeighbors_ {} |
std::vector< SimplexId > | nearestVertexIdentifier_ {} |
std::vector< std::vector< float > > | vertexDistance_ {} |
std::vector< SimplexId > | outputValences_ {} |
std::vector< float > | outputDensity_ {} |
std::vector< float > | outputDifformity_ {} |
std::vector< SimplexId > | outputVertType_ {} |
std::vector< SimplexId > | outputSubdivision_ {} |
std::vector< float > | quadArea_ {} |
std::vector< float > | quadDiagsRatio_ {} |
std::vector< float > | quadEdgesRatio_ {} |
std::vector< float > | quadAnglesRatio_ {} |
std::vector< float > | hausdorff_ {} |
Protected Attributes inherited from ttk::Debug | |
int | debugLevel_ |
std::string | debugMsgPrefix_ |
std::string | debugMsgNamePrefix_ |
Protected Attributes inherited from ttk::BaseClass | |
bool | lastObject_ |
int | threadNumber_ |
Wrapper * | wrapper_ |
Additional Inherited Members | |
Protected Member Functions inherited from ttk::Debug | |
int | printMsgInternal (const std::string &msg, const std::string &right, const std::string &filler, const debug::Priority &priority=debug::Priority::INFO, const debug::LineMode &lineMode=debug::LineMode::NEW, std::ostream &stream=std::cout) const |
int | printMsgInternal (const std::string &msg, const debug::Priority &priority, const debug::LineMode &lineMode, std::ostream &stream=std::cout) const |
int | welcomeMsg (std::ostream &stream) |
Static Protected Attributes inherited from ttk::Debug | |
static COMMON_EXPORTS debug::LineMode | lastLineMode = ttk::debug::LineMode::NEW |
TTK processing package for the topological simplification of scalar data.
Online examples:
Definition at line 32 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 35 of file QuadrangulationSubdivision.h.
int ttk::QuadrangulationSubdivision::execute | ( | const triangulationType & | triangulation | ) |
Definition at line 481 of file QuadrangulationSubdivision.h.
ttk::SimplexId ttk::QuadrangulationSubdivision::findEdgeMiddle | ( | const std::array< SimplexId, 2 > & | e, |
const triangulationType & | triangulation | ||
) | const |
Definition at line 213 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 74 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 54 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 57 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 65 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 61 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 48 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 45 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 42 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 51 of file QuadrangulationSubdivision.h.
|
inline |
Definition at line 39 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 205 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 161 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 164 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 166 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 169 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 171 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 157 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 155 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 180 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 188 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 191 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 176 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 174 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 198 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 185 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 196 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 204 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 201 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 202 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 203 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 178 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 153 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 159 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 151 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 182 of file QuadrangulationSubdivision.h.
|
protected |
Definition at line 148 of file QuadrangulationSubdivision.h.