Package | Description |
---|---|
org.openimaj.ml.clustering.kmeans |
K-Means in OpenIMAJ is designed to be both extremely fast and flexible.
|
org.openimaj.ml.clustering.random |
Modifier and Type | Field and Description |
---|---|
DoubleCentroidsResult |
HierarchicalDoubleKMeansResult.Node.result
DoubleCentroidsResult for this node |
Modifier and Type | Method and Description |
---|---|
DoubleCentroidsResult |
DoubleKMeans.cluster(DataSource<double[]> ds) |
DoubleCentroidsResult |
DoubleKMeans.cluster(double[][] data) |
Modifier and Type | Method and Description |
---|---|
DoubleCentroidsResult |
RandomSetDoubleClusterer.cluster(DataSource<double[]> data)
Selects K elements from the provided
DataSource as the centroids of the clusters. |
DoubleCentroidsResult |
RandomDoubleClusterer.cluster(DataSource<double[]> data)
Selects K elements from the provided
DataSource as the centroids of the clusters. |
DoubleCentroidsResult |
RandomSetDoubleClusterer.cluster(double[][] data)
Selects K elements from the provided data as the centroids of the clusters.
|
DoubleCentroidsResult |
RandomDoubleClusterer.cluster(double[][] data)
Selects K elements from the provided data as the centroids of the clusters.
|