Uses of Interface
elki.data.projection.Projection
-
Packages that use Projection Package Description elki.data.projection Data projections.elki.database.relation Relations, materialized and virtual (views).elki.datasource.filter.transform Data space transformations.elki.index.projected Projected indexes for data. -
-
Uses of Projection in elki.data.projection
Classes in elki.data.projection that implement Projection Modifier and Type Class Description class
FeatureSelection<V extends FeatureVector<F>,F>
Projection class for number vectors.class
LatLngToECEFProjection<V extends NumberVector>
Project (Latitude, Longitude) vectors to (X, Y, Z), from spherical coordinates to ECEF (earth-centered earth-fixed).class
LngLatToECEFProjection<V extends NumberVector>
Project (Longitude, Latitude) vectors to (X, Y, Z), from spherical coordinates to ECEF (earth-centered earth-fixed).class
NumericalFeatureSelection<V extends NumberVector>
Projection class for number vectors.class
RandomProjection<V extends NumberVector>
Randomized projections of the data. -
Uses of Projection in elki.database.relation
Fields in elki.database.relation declared as Projection Modifier and Type Field Description private Projection<IN,OUT>
ProjectedView. projection
The projection we use.Constructors in elki.database.relation with parameters of type Projection Constructor Description ProjectedView(Relation<? extends IN> inner, Projection<IN,OUT> projection)
Constructor. -
Uses of Projection in elki.datasource.filter.transform
Fields in elki.datasource.filter.transform declared as Projection Modifier and Type Field Description (package private) Projection<I,O>
ProjectionFilter.Par. projection
Projection to apply.(package private) Projection<I,O>
ProjectionFilter. projection
Projection to apply.Constructors in elki.datasource.filter.transform with parameters of type Projection Constructor Description ProjectionFilter(Projection<I,O> projection)
Constructor. -
Uses of Projection in elki.index.projected
Fields in elki.index.projected declared as Projection Modifier and Type Field Description (package private) Projection<O,I>
ProjectedIndex.Factory.Par. proj
Projection to use.(package private) Projection<O,I>
ProjectedIndex.Factory. proj
Projection to use.(package private) Projection<O,I>
ProjectedIndex. proj
Projection.Constructors in elki.index.projected with parameters of type Projection Constructor Description Factory(Projection<O,I> proj, IndexFactory<I> inner, boolean materialize, boolean norefine, double kmulti)
Constructor.LatLngAsECEFIndex(Relation<? extends O> relation, Projection<O,O> proj, Relation<O> view, Index inner, boolean norefine)
Constructor.LngLatAsECEFIndex(Relation<? extends O> relation, Projection<O,O> proj, Relation<O> view, Index inner, boolean norefine)
Constructor.ProjectedIndex(Relation<? extends O> relation, Projection<O,I> proj, Relation<I> view, Index inner, boolean norefine, double kmulti)
Constructor.
-