| Package | Description |
|---|---|
| net.returnvoid.analytics |
A package for analysing things (e.g. images).
|
| Modifier and Type | Method and Description |
|---|---|
ColorClustering |
ColorClusteringBuilder.get(int index)
Returns the clustering with the given index (the index doesn't equal to k
- the number of clusters).
|
ColorClustering |
ColorClusteringBuilder.getClustering()
Returns the clustering with optimal number of clusters for the given
data.
|
ColorClustering |
ColorClusteringBuilder.getClustering(int k)
Returns the clustering with k number of clusters.
|
static ColorClustering |
ClusteringHelper.kmeans(RColor[] colors,
java.lang.Integer k,
ColorDifferenceMeasure m)
Applies the k-means algorithm to colors for a given k.
|
static ColorClustering |
ClusteringHelper.kmeans(RColor[] colors,
java.lang.Integer k,
ColorDifferenceMeasure m,
ColorCluster[] existingClusters)
Applies the k-means algorithm to colors for a given k.
|
static ColorClustering[] |
ClusteringHelper.kmeansClusterings(RColor[] colors,
java.lang.Integer minK,
java.lang.Integer maxK,
ColorDifferenceMeasure m)
Applies the k-means algorithm to colors for a range of k.
|