]> AND Private Git Repository - these_gilles.git/blob - THESE/codes/meanshift/Ms_segmenter/Place_images.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
7 avril pour jury
[these_gilles.git] / THESE / codes / meanshift / Ms_segmenter / Place_images.m
1 function Place_images (Dimension, Images)\r
2 % creates a new window that contains all the specified existing windows/images\r
3 % along with possible lines and other graphics, but without menus\r
4 % Dimension is in the form [x, y] and Images is an array of their numbers\r
5 \r
6 figure;\r
7 for i=1:size(Images, 1)\r
8         subplot(Dimension(1), Dimension(2), i);\r
9         image_children = get(Images[i], 'Children');\r
10         \r