{
final BufferedImage image = ImageIO.read(new File("../../images/DSC00104s400.bmp"));
//final BufferedImage image = ImageIO.read(new File("../images/DSCN4909s100.bmp"));
LUV[][] LUVArray = new LUVConverter().toLUVDArray(image);
LuvDataStore dataStore = new LuvDataStore(LUVArray);
Float[] bandwidth = new SimpleBandwidthSelector().getBandwidth(dataStore);
MeanShiftClusterer<LuvPoint> clusterer = new MeanShiftClusterer<LuvPoint>();
clusterer.setDataStore(dataStore);
clusterer.setWindow(bandwidth);
clusterer.doClustering();
System.out.println("clusteringDone");