package osp.ui; import osp.Image; public interface FieldOfViewSelectionInterface extends FieldOfViewInterface{ int getNbrImages(); void computeWithTheBrain(); int getNbrMasksOfImage(int j); String getNameOfMaskOfImage(int i, int j); String getNameOfImage(int j); Image getImage(int i); @Override Image getCurrentImage(); void setSelectedImage(int i); void setSelectedMaskOfImage(int j, int i); boolean isMaskOfImageValidated(int j, int i); int getNbItems(); void setOmega(float angle); }