Step 2Pixel crunching (or) the fun part...
now you have 750 images.
take the middel row of pixels from each of the 750 pictures and adjoin them to a new picture.
this should now be 750 pixel wide.
and it should be looking some like that.
| « Previous Step | Download PDFView All Steps | Next Step » |








































http://www.imagemagick.org
sliceing the middle row of an 320x240 picture work like this:
convert -crop 1x240+160+0 in.jpg slice.jpg
bringing the slices together like this:
convert -append -rotate 90 slice-1.jpg slice-2.jpg slice-3.jpg out.jpg
1st about the "-rotate 90"...
just try it without and you'll see.. ;-)
the "append" feature appends the images vertically...
so two 1x240 slices would end in an 1x480 picture.
since i need a 2x240 picture i have to rotate the slices before appending them.
2nd about scripting...
yes, that was what i was doing and i'm planing a little .exe with graphical interface for "simpler usage" in near future...
3rd about the stacking mehtod...
imagine this movieclip as source:
image 1 = 1a,1b,1c,1d,1e,1f,1g,1h,1i
image 2 = 2a,2b,2c,2d,2e,2f,2g,2h,2i
image 3 = 3a,3b,3c,3d,3e,3f,3g,3h,3i
this would lead to a picture (just the middle row of each):
1e,2e,3e,...
clearer now?