O
- the type of database objects the preprocessor can be applied toD
- the type of distance the used distance function will return@Title(value="Materialize kNN and RkNN Neighborhood preprocessor") @Description(value="Materializes the k nearest neighbors and the reverse k nearest neighbors of objects of a database.") public class MaterializeKNNAndRKNNPreprocessor<O,D extends Distance<D>> extends MaterializeKNNPreprocessor<O,D> implements RKNNIndex<O>
Modifier and Type | Class and Description |
---|---|
static class |
MaterializeKNNAndRKNNPreprocessor.Factory<O,D extends Distance<D>>
The parameterizable factory.
|
Modifier and Type | Field and Description |
---|---|
private static Logging |
logger
Logger to use.
|
private WritableDataStore<SortedSet<DistanceResultPair<D>>> |
materialized_RkNN
Additional data storage for RkNN.
|
knnQuery
distanceFunction, distanceQuery, k, listenerList
storage
relation
Constructor and Description |
---|
MaterializeKNNAndRKNNPreprocessor(Relation<O> relation,
DistanceFunction<? super O,D> distanceFunction,
int k)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
List<DistanceResultPair<D>> |
getKNN(DBID id)
Returns the materialized kNNs of the specified id.
|
protected Logging |
getLogger()
Get the classes static logger.
|
String |
getLongName()
A "pretty" name for the result, for use in titles, captions and menus.
|
List<DistanceResultPair<D>> |
getRKNN(DBID id)
Returns the materialized RkNNs of the specified id.
|
<S extends Distance<S>> |
getRKNNQuery(DistanceQuery<O,S> distanceQuery,
Object... hints)
Get a KNN query object for the given distance query and k.
|
String |
getShortName()
A short name for the result, useful for file names.
|
private void |
materializeKNNAndRKNNs(ArrayDBIDs ids,
FiniteProgress progress)
Materializes the kNNs and RkNNs of the specified object IDs.
|
protected void |
objectsInserted(DBIDs ids)
Called after new objects have been inserted, updates the materialized
neighborhood.
|
protected void |
objectsRemoved(DBIDs ids)
Called after objects have been removed, updates the materialized
neighborhood.
|
protected void |
preprocess()
The actual preprocessing step.
|
private ArrayDBIDs |
updateKNNsAndRkNNs(DBIDs ids)
Updates the kNNs and RkNNs after insertion of the specified ids.
|
addKNNListener, delete, deleteAll, extractAndRemoveIDs, fireKNNsInserted, fireKNNsRemoved, get, insert, insertAll, removeKNNListener
getDistanceFactory, getDistanceQuery, getK, getKNNQuery
getPageFileStatistics
private static final Logging logger
private WritableDataStore<SortedSet<DistanceResultPair<D extends Distance<D>>>> materialized_RkNN
public MaterializeKNNAndRKNNPreprocessor(Relation<O> relation, DistanceFunction<? super O,D> distanceFunction, int k)
relation
- Relation to processdistanceFunction
- the distance function to usek
- query kprotected void preprocess()
MaterializeKNNPreprocessor
preprocess
in class MaterializeKNNPreprocessor<O,D extends Distance<D>>
private void materializeKNNAndRKNNs(ArrayDBIDs ids, FiniteProgress progress)
ids
- the IDs of the objectsprotected void objectsInserted(DBIDs ids)
MaterializeKNNPreprocessor
objectsInserted
in class MaterializeKNNPreprocessor<O,D extends Distance<D>>
ids
- the ids of the newly inserted objectsprivate ArrayDBIDs updateKNNsAndRkNNs(DBIDs ids)
ids
- the ids of newly inserted objects causing a change of
materialized kNNs and RkNNsprotected void objectsRemoved(DBIDs ids)
MaterializeKNNPreprocessor
objectsRemoved
in class MaterializeKNNPreprocessor<O,D extends Distance<D>>
ids
- the ids of the removed objectspublic List<DistanceResultPair<D>> getKNN(DBID id)
id
- the query idpublic List<DistanceResultPair<D>> getRKNN(DBID id)
id
- the query idpublic <S extends Distance<S>> RKNNQuery<O,S> getRKNNQuery(DistanceQuery<O,S> distanceQuery, Object... hints)
RKNNIndex
getRKNNQuery
in interface RKNNIndex<O>
S
- Distance typedistanceQuery
- Distance queryhints
- Hints for the optimizernull
public String getLongName()
Result
getLongName
in interface Result
getLongName
in class MaterializeKNNPreprocessor<O,D extends Distance<D>>
public String getShortName()
Result
getShortName
in interface Result
getShortName
in class MaterializeKNNPreprocessor<O,D extends Distance<D>>
protected Logging getLogger()
AbstractPreprocessorIndex