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>();