Hi,<br><br>is there another usage pattern for using TileImageFilter than setting a layout (1, 1, 0) or ( 1, 1, 1, 0) etc. ?<br><br>I have 3 images with 64x64x1x24 dimensions, and I want to combine them and get one 64x64x3x24 image.<br>
<br>Now it is done in the following way:<br> - dropping the 3rd dim to get 64x64x24 images<br> - tiling them together with layout (1, 1, 1, 0) to get a 64x64x24x3 image<br> - permuting the 3rd and 4th dimension.<br><br>However, it is not very elegant. Is there a better way? PasteImageFilter maybe?<br>
<br>I tried tiling the 64x64x24 images with the layout (1, 1, 0, 1), but I get this at run-time:<br><br>-----------------------------------------------------------------------<br> *** Break *** segmentation violation<br>Attaching to program: /proc/4548/exe, process 4548<br>
[Thread debugging using libthread_db enabled]<br>done.<br>done.<br>done.<br>done.<br>done.<br>done.<br>done.<br>done.<br>done.<br>done.<br>0x00007f3bec801f7d in __libc_waitpid (pid=4554, <br>    stat_loc=&lt;value optimised out&gt;, options=0)<br>
    at ../sysdeps/unix/sysv/linux/waitpid.c:41<br>41      ../sysdeps/unix/sysv/linux/waitpid.c: Nincs ilyen fájl vagy könyvtár.<br>        in ../sysdeps/unix/sysv/linux/waitpid.c<br>error detected on stdin<br>A debugging session is active.<br>
<br>        Inferior 1 [process 4548] will be detached.<br><br>Quit anyway? (y or n) [answered Y; input not from terminal]<br>Detaching from program: /proc/4548/exe, process 4548<br>-----------------------------------------------------------------------<br>
<br>I also tried to tile the first 4D images to get a 4D one, with the same result.<br><br>Is it a misuse or a bug?<br><br>Thanks,<br>Miklos<br><br>