Changeset 872 for cpp/frams/model/similarity/simil_model.h
- Timestamp:
- 05/04/19 23:39:39 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/similarity/simil_model.h
r870 r872 77 77 /// Currently selected matching algorithm. Allowed values: 0 (more exact, slower), 1 (more greedy, faster). Details in https://doi.org/10.1007/978-3-030-16692-2_8 78 78 /// @sa EvaluateDistance 79 int matching_method;79 paInt matching_method; 80 80 81 81 /// Table of weights for weighted distance function. … … 89 89 90 90 //for Zfixed = 1, the "z" (vertical) coordinates are not taken into account during PCA alignment 91 int fixedZaxis;91 paInt fixedZaxis; 92 92 93 93 //Controls the depth of fuzzy neighbourhood 94 94 int fuzzyDepth; 95 intisFuzzy;95 bool isFuzzy; 96 96 97 97 //For wMDS = 1 weighted MDS with vertex degrees as weights is used for the alignment. 98 int wMDS;98 paInt wMDS; 99 99 100 100 //For saveMatching = 1 the best matching found will be saved. 101 intsaveMatching;101 bool saveMatching; 102 102 103 103 /// Interface to local parameters
Note: See TracChangeset
for help on using the changeset viewer.