String mixture_path = String.format("%s%s_5D_%03d.mix", input_folder, image_name, n);
// Read image and generate initial mixture model
System.out.print("Read image and generate/load the mixture 5D : ");
BufferedImage image = Image.readImage(image_path);
MixtureModel f = Image.loadMixtureModel(mixture_path, image, n);
System.out.println("ok");
// Creates and save the statistical image
System.out.print("Create the statistical image : ");
BufferedImage stat = Image.createImageFromMixtureModel(image.getWidth(), image.getHeight(), f);