// Creation de 2 lignes
// Horizontal line of the cross
// Calculation of x origine
int origine = x - width / 2;
roi1 = new Line(origine, y, origine + width, y);
// Vertical line of the cross
origine = y - height / 2;
roi2 = new Line(x, origine, x, origine + height);
break;
case TEXT:
roi = new TextRoi(x, y, imagePlus);
break;
case POINT: