public final class OnePassExclusiveClustering extends Object
CanopyClustering.| Constructor and Description |
|---|
OnePassExclusiveClustering(double t1)
Constructs a one pass clustering algorithm.
|
OnePassExclusiveClustering(double t1,
int k,
int minSize,
boolean mergeOverlaps)
Constructs a one pass clustering algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
List<de.jungblut.math.DoubleVector> |
cluster(List<de.jungblut.math.DoubleVector> values,
boolean verbose)
Cluster the given items.
|
public OnePassExclusiveClustering(double t1)
t1 - the maximum distance of neighbourhood.public OnePassExclusiveClustering(double t1,
int k,
int minSize,
boolean mergeOverlaps)
t1 - the maximum distance of neighbourhood.k - the maximum number of neighbours to retrieve inside the t1
threshold.minSize - the minimum size of a cluster.mergeOverlaps - if true, overlapping found centers by t1 distance will
be merged.Copyright © 2016. All rights reserved.