Struct acap::vp::VpTree[][src]

pub struct VpTree<T: Proximity> { /* fields omitted */ }
Expand description

Implementations

Create an empty tree.

Create a balanced tree out of a sequence of items.

Iterate over the items stored in this tree.

Rebalance this VP tree.

Push a new item into the tree.

Inserting elements individually tends to unbalance the tree. Use VpTree::balanced if possible to create a balanced tree from a batch of items.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Extends a collection with the contents of an iterator. Read more

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements. Read more

Creates a value from an iterator. Read more

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Search for nearest neighbors and add them to a neighborhood.

Returns the nearest neighbor to target (or None if this index is empty).

Returns the nearest neighbor to target within the distance threshold, if one exists.

Returns the up to k nearest neighbors to target. Read more

Returns the up to k nearest neighbors to target within the distance threshold. Read more

Merges up to k nearest neighbors into an existing sorted vector.

Merges up to k nearest neighbors within the threshold into an existing sorted vector.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.