Uses of Interface
cz.fidentis.analyst.data.kdtree.KdTree
Packages that use KdTree
Package
Description
Complete human face model.
K-d tree space partitioning structure.
-
Uses of KdTree in cz.fidentis.analyst.data.face
Methods in cz.fidentis.analyst.data.face that return KdTreeModifier and TypeMethodDescriptionHumanFace.getKdTree()
Returns already computed k-d tree of the triangular mesh ornull
.HumanFaceState.kdTree()
Returns the value of thekdTree
record component.Methods in cz.fidentis.analyst.data.face with parameters of type KdTreeConstructors in cz.fidentis.analyst.data.face with parameters of type KdTree -
Uses of KdTree in cz.fidentis.analyst.data.face.impl
Methods in cz.fidentis.analyst.data.face.impl that return KdTreeMethods in cz.fidentis.analyst.data.face.impl with parameters of type KdTree -
Uses of KdTree in cz.fidentis.analyst.data.kdtree
Methods in cz.fidentis.analyst.data.kdtree that return KdTreeModifier and TypeMethodDescriptionstatic KdTree
Creates a new k-D tree.static KdTree
Creates a new k-D tree.static KdTree
KdTree.create
(Collection<MeshFacet> facets) Creates a new k-D tree.static KdTree
Creates a new k-D tree.Methods in cz.fidentis.analyst.data.kdtree with parameters of type KdTreeModifier and TypeMethodDescriptionvoid
KdTreeVisitor.visitKdTree
(KdTree kdTree) The main inspection method to be implemented by specific visitors. -
Uses of KdTree in cz.fidentis.analyst.data.kdtree.impl
Classes in cz.fidentis.analyst.data.kdtree.impl that implement KdTree -
Uses of KdTree in cz.fidentis.analyst.engines.avgmesh
Methods in cz.fidentis.analyst.engines.avgmesh with parameters of type KdTreeModifier and TypeMethodDescriptionstatic MeshModel
AvgMeshServices.computeFromNearestNeighbors
(KdTree kdTree, AvgMeshConfig config) Returns a list of samples from the given mesh.default void
AvgMeshVisitor.visitKdTree
(KdTree kdTree) Method parameters in cz.fidentis.analyst.engines.avgmesh with type arguments of type KdTreeModifier and TypeMethodDescriptionstatic MeshModel
AvgMeshServices.computeFromNearestNeighbors
(Collection<KdTree> kdTrees, AvgMeshConfig config) Returns a list of samples from the given mesh. -
Uses of KdTree in cz.fidentis.analyst.engines.avgmesh.impl
Methods in cz.fidentis.analyst.engines.avgmesh.impl with parameters of type KdTree -
Uses of KdTree in cz.fidentis.analyst.engines.distance
Methods in cz.fidentis.analyst.engines.distance that return KdTreeModifier and TypeMethodDescriptionMeshDistanceConfig.kdTree()
Returns the value of thekdTree
record component.Constructors in cz.fidentis.analyst.engines.distance with parameters of type KdTreeModifierConstructorDescriptionMeshDistanceConfig
(MeshDistanceConfig.Method method, KdTree kdTree, boolean relativeDist, boolean crop) Constructor for the nearest-neighbor distance methods only, when the k-D tree already exists.MeshDistanceConfig
(MeshDistanceConfig.Method method, KdTree kdTree, Octree octree, MeshDistanceConfig.GPUData gpuData, boolean relativeDist, boolean crop) Creates an instance of aMeshDistanceConfig
record class. -
Uses of KdTree in cz.fidentis.analyst.engines.distance.impl
Methods in cz.fidentis.analyst.engines.distance.impl that return KdTreeModifier and TypeMethodDescriptionMeshDistanceNN.getMainKdTree()
Return the KD tree to which distances are computed.Constructors in cz.fidentis.analyst.engines.distance.impl with parameters of type KdTreeModifierConstructorDescriptionMeshDistanceNN
(KdTree mainKdTree, boolean pointToPoint, boolean relativeDistance, boolean parallel, boolean crop) Constructor. -
Uses of KdTree in cz.fidentis.analyst.engines.icp
Methods in cz.fidentis.analyst.engines.icp that return KdTreeModifier and TypeMethodDescriptionIcpConfig.kdTree()
Returns the value of thekdTree
record component.Constructors in cz.fidentis.analyst.engines.icp with parameters of type KdTreeModifierConstructorDescriptionIcpConfig
(KdTree kdTree, int maxIteration, boolean scale, double error, PointSamplingConfig strategy, int crop) Creates an instance of aIcpConfig
record class. -
Uses of KdTree in cz.fidentis.analyst.engines.icp.impl
Fields in cz.fidentis.analyst.engines.icp.impl declared as KdTreeModifier and TypeFieldDescriptionprotected final KdTree
IcpVisitorImpl.primaryKdTree
K-d tree of the primary triangular mesh(es).Methods in cz.fidentis.analyst.engines.icp.impl that return KdTreeModifier and TypeMethodDescriptionIcpVisitorImpl.getPrimaryKdTree()
Returns k-d tree of the primary mesh to which other meshes has been transformed.Constructors in cz.fidentis.analyst.engines.icp.impl with parameters of type KdTreeModifierConstructorDescriptionIcpVisitorImpl
(KdTree primaryKdTree, int maxIteration, boolean scale, double error, PointSamplingConfig strategy, int crop) Constructor. -
Uses of KdTree in cz.fidentis.analyst.engines.point2surface
Methods in cz.fidentis.analyst.engines.point2surface with parameters of type KdTreeModifier and TypeMethodDescriptionPointToSurfaceDistanceServices.findNearestPoints
(KdTree kdTree, PointToSurfaceDistanceConfig config) Returns the closest point from the mesh stored in the k-D tree and the 3D point.PointToSurfaceDistanceServices.measure
(KdTree kdTree, PointToSurfaceDistanceConfig config) Returns the distance and the closest pointsstatic double
PointToSurfaceDistanceServices.measureDistance
(KdTree kdTree, PointToSurfaceDistanceConfig config) Returns the distance from the 3D point and the mesh stored in th k-D tree.Method parameters in cz.fidentis.analyst.engines.point2surface with type arguments of type KdTreeModifier and TypeMethodDescriptionPointToSurfaceDistanceServices.findNearestPoints
(Collection<KdTree> kdTrees, PointToSurfaceDistanceConfig config) Returns the closest point from the meshes stored in the k-D trees and the 3D point.PointToSurfaceDistanceServices.measure
(Collection<KdTree> kdTrees, PointToSurfaceDistanceConfig config) Returns the distance and the closest pointsstatic double
PointToSurfaceDistanceServices.measureDistance
(Collection<KdTree> kdTrees, PointToSurfaceDistanceConfig config) Returns the distance from the 3D point and the meshes stored in th k-D trees. -
Uses of KdTree in cz.fidentis.analyst.engines.point2surface.impl
Methods in cz.fidentis.analyst.engines.point2surface.impl with parameters of type KdTreeModifier and TypeMethodDescriptionvoid
ClosestMeshVerticesImpl.visitKdTree
(KdTree kdTree) void
ClosestNodesImpl.visitKdTree
(KdTree kdTree) void
ClosestSurfacePointsImpl.visitKdTree
(KdTree kdTree) -
Uses of KdTree in cz.fidentis.analyst.engines.sampling.impl
Methods in cz.fidentis.analyst.engines.sampling.impl with parameters of type KdTreeModifier and TypeMethodDescriptionprotected void
PoissonDiskSubSampling.addSamplesToKdTree
(Set<MeshPoint> samples, KdTree kdTree) Adds samples to the KdTreePoissonDiskSubSampling.filterRaysIntersections
(KdTree kdTree, Set<MeshPoint> intersections) Filters intersections not breaking minimal distance rule.