Skip to content
Snippets Groups Projects
Commit 7a36c333 authored by Daniel Schramm's avatar Daniel Schramm Committed by Daniel Schramm
Browse files

Javadoc modified with respect to feature point types

parent 59346306
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
*
* @param mainFacets Facets to which distance from the visited human face's facets is to be computed.
* Must not be {@code null}.
* @param featurePoints Feature points according to which the Hausdorff distances will be prioritized.
* @param featurePoints Types of feature points according to which the Hausdorff distances will be prioritized.
* Must not be {@code null}.
* @param strategy Strategy of the computation of distance
* @param relativeDistance If {@code true}, then the visitor calculates the relative distances with respect
......@@ -75,7 +75,7 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
* Constructor.
*
* @param mainFacet Primary facet to which distance from the visited human face's facets is to be computed. Must not be {@code null}.
* @param featurePoints Feature points according to which the Hausdorff distances will be prioritized.
* @param featurePoints Types of feature points according to which the Hausdorff distances will be prioritized.
* Must not be {@code null}.
* @param strategy Strategy of the computation of distance
* @param relativeDistance If {@code true}, then the visitor calculates the relative distances with respect
......@@ -93,7 +93,7 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
*
* @param mainModel The mesh model with primary facets to which distance from the visited human face's facets is to be computed.
* Must not be {@code null} or empty.
* @param featurePoints Feature points according to which the Hausdorff distances will be prioritized.
* @param featurePoints Types of feature points according to which the Hausdorff distances will be prioritized.
* Must not be {@code null}.
* @param strategy Strategy of the computation of distance
* @param relativeDistance If {@code true}, then the visitor calculates the relative distances with respect
......@@ -110,7 +110,7 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
* Constructor.
*
* @param face Human face to which distance from other human faces is to be computed. Must not be {@code null}.
* @param featurePoints Feature points according to which the Hausdorff distances will be prioritized.
* @param featurePoints Types of feature points according to which the Hausdorff distances will be prioritized.
* Must not be {@code null}.
* @param strategy Strategy of the computation of distance
* @param relativeDistance If {@code true}, then the visitor calculates the relative distances with respect
......@@ -128,7 +128,7 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
*
* @param mainKdTree The KD tree to which distance from the visited human face's facets is to be computed.
* Must not be {@code null}.
* @param featurePoints Feature points according to which the Hausdorff distances will be prioritized.
* @param featurePoints Types of feature points according to which the Hausdorff distances will be prioritized.
* Must not be {@code null}.
* @param strategy Strategy of the computation of distance
* @param relativeDistance If {@code true}, then the visitor calculates the relative distances with respect
......@@ -145,6 +145,13 @@ public class HausdorffDistancePrioritized extends HumanFaceVisitor {
featurePointTypes = featurePoints;
}
/**
* Returns types of feature points according to which the computation of Hausdorff
* distance is prioritized.
*
* @return types of feature points according to which the computation of Hausdorff
* distance is prioritized
*/
public Set<FeaturePointType> getFeaturePointTypes() {
return Collections.unmodifiableSet(featurePointTypes);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment