here i have a small toy car which is standing in the middle of a slow moving turntable.
(1round / 30sec)
Remove these ads by
Signing UpStep 1The Object
the video camera (mini-dv) captures the car as it turns.
with 25 Pictures/Sec and a turning-time from 30 sec i end with 750 pictures.
(copy the DV-film via firewire from the camera and splice him into single images with your favourite movie-tool)
| « Previous Step | Download PDFView All Steps | Next Step » |















































At first, my idea was to hold the camera up against my car window while making the long drive up and down Sepulveda - an LA road that goes through the mountains - that took me to work and back home. I had no graphical programming experience, so after dumping the ~3 min. videos out to frames, I wrote a Photoshop batch to open each one, copy the center column, close it, and resize the other image it would refocus back to from its center point outwards width-wise by 2 pixels. This effectively built the image to the left, and a blankness to the right. There was no way to paste to the far right edge of the window, so I had to trick it this way. Then I'd just crop out the right half. It worked well, and slowly.
I also tried making several versions of the same pano from different vertical columns, evenly spaced across the image sets. When played back, it made everything in the image appear to spin, and slide a bit, as each was being viewed from different angles when it was in different parts of the frame. It was fun, and the images were monsterously wide.
Then I felt like trying it for your idea here, but had no nice rotational device, so I taped down 2 bars of something to create a V on my desk, and pushed a dead CD into that corner, and put an action figure on it (Rokkon, from He-Man), and filmed from a tripod as I tried very hard to spin the disc slowly, and evenly. I got something kind of like your spins, but very low-res (320x240 video), and very jaggedy, as I just couldn't spin it smoothly enough. It was just a test though, and it worked enough to prove the point for me, so I didn't revisit it. I tend to give up when I see that an idea works, without making anything cool out of it - I guess I'm just all about process, and not results.
Somewhat relatedly, a few years after that, I got into microcontrollers, and processing (www.processing.org), and actually made a little turntable with a platform on a stepper motor, for perfect 1.8° incremental turning (200 steps in a full 360°). I hooked it up to a processing script through a BASIC Stamp connected via serial to the PC, and had it spin the thing, and capture a picture through a miniDV cam for each position. Then I wrote a Processing script to let me spin the object - Pom Pom, a Homestar Runner figurine. You can see the setup here:
http://www.garyfixler.com/pomspin1.jpg
http://www.garyfixler.com/pomspin2.jpg
And you can play with it here:
http://www.garyfixler.com/pomspin/
Click, and drag left and right to spin it, and if you make sure to let go inside the boundaries of the little movie, you can sort of throw him in either direction (let go while still dragging), and he'll spin, slowing to a stop.
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?
woth a view... and its free...
think of it as all possibilitys of photoshop and more without being forced to use a mouse. ;-)
scripting is fun.
you can do almost anything with it as you can with photoshop.
but its not so "easy" to use the first time, because you only have "files" and not "pictures" you edit..