Package | Description |
---|---|
org.openimaj.ml.clustering.kmeans |
K-Means in OpenIMAJ is designed to be both extremely fast and flexible.
|
Modifier and Type | Method and Description |
---|---|
ByteKMeans.Result |
ByteKMeans.cluster(byte[][] data) |
ByteKMeans.Result |
ByteKMeans.cluster(DataSource<byte[]> ds) |
protected ByteKMeans.Result |
ByteKMeans.cluster(DataSource<byte[]> data,
int K)
Initiate clustering with the given data and number of clusters.
|
Modifier and Type | Method and Description |
---|---|
void |
ByteKMeans.cluster(byte[][] data,
ByteKMeans.Result result)
Main clustering algorithm.
|
void |
ByteKMeans.cluster(DataSource<byte[]> data,
ByteKMeans.Result result)
Main clustering algorithm.
|