//SimpleGridMaker sgm = new SimpleGridMaker();
Dimension cellDim = new Dimension(2,2);
//List<Cell> srcCells = sgm.getGrid(img, new Dimension(40,30), cellDim);
SimulatedAnnealing sa = new SimulatedAnnealing(1000000, 0.00001, 0.99);
SecondaryImagesConverter sic = new SecondaryImagesConverter(file);
List<FeatureSet> candidates = sic.convertToFeatures(cellDim);
List<Cell> srcCells = sa.perform(img, cellDim, candidates);
NearestNeighbour nn = new NearestNeighbour();
FeatureSet nearest;
List<Cell> newCells = new ArrayList<Cell>();