9899100101102103104105106107108
ds.setOptimalWindow(bandwidth0); System.out.println(); AglomerativeMeanShift<NDimPoint> instance = new AglomerativeMeanShift<NDimPoint> (new MeanShiftClusterer()); instance.setDataStore(ds); final long startime = System.currentTimeMillis();
127128129130131132133
} @Override protected <T extends NDimPoint> IMeanShiftClusterer<T> createInstance() { return new AglomerativeMeanShift<T>(new MeanShiftClusterer()); }