TTK
|
TTK processing package for the topological simplification of scalar data. More...
#include <TopologicalSimplification.h>
Public Types | |
enum class | BACKEND { LEGACY , LTS , TO } |
Public Member Functions | |
TopologicalSimplification () | |
template<typename dataType , typename triangulationType > | |
int | execute (const dataType *const inputScalars, dataType *const outputScalars, const SimplexId *const identifiers, const SimplexId *const inputOffsets, SimplexId *const offsets, const SimplexId constraintNumber, const bool addPerturbation, triangulationType &triangulation, const ttk::DiagramType &constraintDiagram={}) |
void | setBackend (const BACKEND arg) |
int | preconditionTriangulation (AbstractTriangulation *triangulation) |
![]() | |
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) |
![]() | |
BaseClass () | |
virtual | ~BaseClass ()=default |
int | getThreadNumber () const |
virtual int | setThreadNumber (const int threadNumber) |
Protected Attributes | |
BACKEND | backend_ {BACKEND::LTS} |
LegacyTopologicalSimplification | legacyObject_ |
lts::LocalizedTopologicalSimplification | ltsObject_ |
ttk::TopologicalOptimization | topologyOptimizer_ |
SimplexId | vertexNumber_ {} |
bool | UseFastPersistenceUpdate {true} |
bool | FastAssignmentUpdate {true} |
int | EpochNumber {1000} |
int | PDCMethod {1} |
int | MethodOptimization {0} |
int | FinePairManagement {0} |
bool | ChooseLearningRate {false} |
double | LearningRate {0.0001} |
double | Alpha {0.5} |
double | CoefStopCondition {0.01} |
bool | OptimizationWithoutMatching {false} |
int | ThresholdMethod {1} |
double | Threshold {0.01} |
int | LowerThreshold {-1} |
int | UpperThreshold {2} |
int | PairTypeToDelete {1} |
bool | ConstraintAveraging {true} |
int | PrintFrequency {10} |
![]() | |
int | debugLevel_ |
std::string | debugMsgPrefix_ |
std::string | debugMsgNamePrefix_ |
![]() | |
bool | lastObject_ |
int | threadNumber_ |
Wrapper * | wrapper_ |
Additional Inherited Members | |
![]() | |
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 COMMON_EXPORTS debug::LineMode | lastLineMode = ttk::debug::LineMode::NEW |
TTK processing package for the topological simplification of scalar data.
Given an input scalar field and a list of critical points to remove, this class minimally edits the scalar field such that the listed critical points disappear. This procedure is useful to speedup subsequent topological data analysis when outlier critical points can be easily identified. It is also useful for data simplification.
Related publications
"Generalized Topological Simplification of Scalar Fields on Surfaces"
Julien Tierny, Valerio Pascucci
IEEE Transactions on Visualization and Computer Graphics.
Proc. of IEEE VIS 2012.
"Localized Topological Simplification of Scalar Data"
Jonas Lukasczyk, Christoph Garth, Ross Maciejewski, Julien Tierny
IEEE Transactions on Visualization and Computer Graphics.
Proc. of IEEE VIS 2020.
"A Practical Solver for Scalar Data Topological Simplification"
Mohamed Kissi, Mathieu Pont, Joshua A. Levine, Julien Tierny
IEEE Transactions on Visualization and Computer Graphics.
Proc. of IEEE VIS 2024.
Online examples:
Definition at line 123 of file TopologicalSimplification.h.
|
strong |
Enumerator | |
---|---|
LEGACY | |
LTS | |
TO |
Definition at line 127 of file TopologicalSimplification.h.
ttk::TopologicalSimplification::TopologicalSimplification | ( | ) |
Definition at line 3 of file TopologicalSimplification.cpp.
int ttk::TopologicalSimplification::execute | ( | const dataType *const | inputScalars, |
dataType *const | outputScalars, | ||
const SimplexId *const | identifiers, | ||
const SimplexId *const | inputOffsets, | ||
SimplexId *const | offsets, | ||
const SimplexId | constraintNumber, | ||
const bool | addPerturbation, | ||
triangulationType & | triangulation, | ||
const ttk::DiagramType & | constraintDiagram = {} |
||
) |
Definition at line 226 of file TopologicalSimplification.h.
|
inline |
Definition at line 148 of file TopologicalSimplification.h.
|
inline |
Definition at line 144 of file TopologicalSimplification.h.
|
protected |
Definition at line 205 of file TopologicalSimplification.h.
|
protected |
Definition at line 177 of file TopologicalSimplification.h.
|
protected |
Definition at line 201 of file TopologicalSimplification.h.
|
protected |
Definition at line 209 of file TopologicalSimplification.h.
|
protected |
Definition at line 219 of file TopologicalSimplification.h.
|
protected |
Definition at line 185 of file TopologicalSimplification.h.
|
protected |
Definition at line 184 of file TopologicalSimplification.h.
|
protected |
Definition at line 198 of file TopologicalSimplification.h.
|
protected |
Definition at line 202 of file TopologicalSimplification.h.
|
protected |
Definition at line 178 of file TopologicalSimplification.h.
|
protected |
Definition at line 215 of file TopologicalSimplification.h.
|
protected |
Definition at line 179 of file TopologicalSimplification.h.
|
protected |
Definition at line 193 of file TopologicalSimplification.h.
|
protected |
Definition at line 212 of file TopologicalSimplification.h.
|
protected |
Definition at line 217 of file TopologicalSimplification.h.
|
protected |
Definition at line 189 of file TopologicalSimplification.h.
|
protected |
Definition at line 221 of file TopologicalSimplification.h.
|
protected |
Definition at line 214 of file TopologicalSimplification.h.
|
protected |
Definition at line 213 of file TopologicalSimplification.h.
|
protected |
Definition at line 180 of file TopologicalSimplification.h.
|
protected |
Definition at line 216 of file TopologicalSimplification.h.
|
protected |
Definition at line 183 of file TopologicalSimplification.h.
|
protected |
Definition at line 182 of file TopologicalSimplification.h.