Uses of Class
elki.data.ModifiableHyperBoundingBox
-
Packages that use ModifiableHyperBoundingBox Package Description elki.data.spatial Spatial data types - interfaces and utilities.elki.index.tree.spatial Tree-based index structures for spatial indexing.elki.index.tree.spatial.rstarvariants R*-tree and variants.elki.index.tree.spatial.rstarvariants.deliclu elki.index.tree.spatial.rstarvariants.rdknn elki.index.tree.spatial.rstarvariants.strategies.split Splitting strategies for R-trees.elki.result Result types, representation and handling.elki.visualization.visualizers.parallel.selection Visualizers for object selection based on parallel projections.elki.visualization.visualizers.scatterplot.selection Visualizers for object selection based on 2D projections. -
-
Uses of ModifiableHyperBoundingBox in elki.data.spatial
Methods in elki.data.spatial that return ModifiableHyperBoundingBox Modifier and Type Method Description static ModifiableHyperBoundingBox
SpatialUtil. intersection(SpatialComparable box1, SpatialComparable box2)
Calculate the intersection of the two MBRs ornull
if they do not intersect.static ModifiableHyperBoundingBox
SpatialUtil. union(SpatialComparable box1, SpatialComparable box2)
Computes the union HyperBoundingBox of two SpatialComparables.static ModifiableHyperBoundingBox
SpatialUtil. unionTolerant(SpatialComparable mbr1, SpatialComparable mbr2)
Returns the union of the two specified MBRs. -
Uses of ModifiableHyperBoundingBox in elki.index.tree.spatial
Fields in elki.index.tree.spatial declared as ModifiableHyperBoundingBox Modifier and Type Field Description private ModifiableHyperBoundingBox
SpatialDirectoryEntry. mbr
The minimum bounding rectangle of the underlying spatial node.Methods in elki.index.tree.spatial with parameters of type ModifiableHyperBoundingBox Modifier and Type Method Description void
SpatialDirectoryEntry. setMBR(ModifiableHyperBoundingBox mbr)
Sets the MBR of this entry.Constructors in elki.index.tree.spatial with parameters of type ModifiableHyperBoundingBox Constructor Description SpatialDirectoryEntry(int id, ModifiableHyperBoundingBox mbr)
Constructs a new SpatialDirectoryEntry object with the given parameters. -
Uses of ModifiableHyperBoundingBox in elki.index.tree.spatial.rstarvariants
Methods in elki.index.tree.spatial.rstarvariants that return ModifiableHyperBoundingBox Modifier and Type Method Description ModifiableHyperBoundingBox
AbstractRStarTreeNode. computeMBR()
Recomputing the MBR is rather expensive. -
Uses of ModifiableHyperBoundingBox in elki.index.tree.spatial.rstarvariants.deliclu
Constructors in elki.index.tree.spatial.rstarvariants.deliclu with parameters of type ModifiableHyperBoundingBox Constructor Description DeLiCluDirectoryEntry(int id, ModifiableHyperBoundingBox mbr, boolean hasHandled, boolean hasUnhandled)
Constructs a new DeLiCluDirectoryEntry object with the given parameters. -
Uses of ModifiableHyperBoundingBox in elki.index.tree.spatial.rstarvariants.rdknn
Constructors in elki.index.tree.spatial.rstarvariants.rdknn with parameters of type ModifiableHyperBoundingBox Constructor Description RdKNNDirectoryEntry(int id, ModifiableHyperBoundingBox mbr, double knnDistance)
Constructs a new RDkNNDirectoryEntry object with the given parameters. -
Uses of ModifiableHyperBoundingBox in elki.index.tree.spatial.rstarvariants.strategies.split
Methods in elki.index.tree.spatial.rstarvariants.strategies.split that return ModifiableHyperBoundingBox Modifier and Type Method Description private ModifiableHyperBoundingBox
TopologicalSplitter.Split. mbr(DoubleIntPair[] sorting, int from, int to)
Computes and returns the mbr of the specified nodes, only the nodes between from and to index are considered. -
Uses of ModifiableHyperBoundingBox in elki.result
Fields in elki.result declared as ModifiableHyperBoundingBox Modifier and Type Field Description private ModifiableHyperBoundingBox
RangeSelection. range
Selection rangeMethods in elki.result that return ModifiableHyperBoundingBox Modifier and Type Method Description ModifiableHyperBoundingBox
RangeSelection. getRanges()
Get the selection range.Constructors in elki.result with parameters of type ModifiableHyperBoundingBox Constructor Description RangeSelection(DBIDs selection, ModifiableHyperBoundingBox ranges)
Constructor. -
Uses of ModifiableHyperBoundingBox in elki.visualization.visualizers.parallel.selection
Methods in elki.visualization.visualizers.parallel.selection with parameters of type ModifiableHyperBoundingBox Modifier and Type Method Description private void
SelectionToolAxisRangeVisualization.Instance. updateSelectionRectKoordinates(double x1, double x2, double y1, double y2, ModifiableHyperBoundingBox ranges)
Set the selected ranges and the mask for the actual dimensions in the context -
Uses of ModifiableHyperBoundingBox in elki.visualization.visualizers.scatterplot.selection
Methods in elki.visualization.visualizers.scatterplot.selection with parameters of type ModifiableHyperBoundingBox Modifier and Type Method Description private void
SelectionToolCubeVisualization.Instance. updateSelectionRectKoordinates(double x1, double x2, double y1, double y2, ModifiableHyperBoundingBox ranges)
Set the selected ranges and the mask for the actual dimensions in the context.
-