Slit scan photography has been used artistically before: http://www.cabinetmagazine.org/issues/25/belden-adams.php (the picture of the runner and the cyclist is nicely mindbending) And pretty much everyone here would be familiar with a couple of artistic uses of slit-scan photography - the opening credits of Doctor Who ( http://h2g2.com/approved_entry/A907544 ) and the ending of 2001: A Space Odyssey.
A Very Unusual Camera That Emphasizes Time Over Space
11–20 of 61 posts
Re: A Very Unusual Camera That Emphasizes Time Over Space
#12You don't need an $85,000 camera to play around with slit scan photography. As with just about everything these days, there's an app for that: https://itunes.apple.com/us/app/slit-scan-camera/id419292360... Note that this is slit-SCAN, which is a bit different in that it moves the "slit" across the face off the sensor, rather than capturing from a static slit over time (the same technique was used in Star Trek:TNG to…
Just what came to my mind just now.
Re: A Very Unusual Camera That Emphasizes Time Over Space
#13It seems like it would be simple enough to convert a video into an image like these by isolating a single column of pixels from each frame and putting them together chronologically.
#starting at 467s and outputting the images of the next 3 seconds
ffmpeg -ss 467 -t 3 -i video.mkv output.%04d.png
# crop image to 1px slices 280 pixels from the left.
gm mogrify -crop 1x+280+0 *.png
# stitch them
gm montage -border 0 -geometry +0+0 -tile x1 *.png image.jpg
Perfect example how easy and straightforward it is to use command line utilities.Now someone just has to find movies with static camera scenes that have a lot of horizontal actor/object movement.
Random example showing Bill Bailey as a demon: http://i.imgur.com/AWWG8.jpg
Some static rallye car cameras from http://www.youtube.com/watch?v=D2QMuT04EOw -> http://i.imgur.com/GV3bY.jpg
Needs either higher framerate videos or longer scenes.
Re: A Very Unusual Camera That Emphasizes Time Over Space
#14This is how finish line cameras at races normally work. At least many of the bike races I've been in.
Re: A Very Unusual Camera That Emphasizes Time Over Space
#15Looking at those photos, I wonder if a "time algorithm" could reconstruct them into a "normal" photo?
Re: A Very Unusual Camera That Emphasizes Time Over Space
#16Looking at those photos, I wonder if a "time algorithm" could reconstruct them into a "normal" photo?
Re: A Very Unusual Camera That Emphasizes Time Over Space
#17Slit scan photography has been used artistically before: http://www.cabinetmagazine.org/issues/25/belden-adams.php (the picture of the runner and the cyclist is nicely mindbending) And pretty much everyone here would be familiar with a couple of artistic uses of slit-scan photography - the opening credits of Doctor Who ( http://h2g2.com/approved_entry/A907544 ) and the ending of 2001: A Space Odyssey.
Is it possible the author hasn't seen a photo finish before? I was surprised he didn't mention races at all.
Re: A Very Unusual Camera That Emphasizes Time Over Space
#18This is how finish line cameras at races normally work. At least many of the bike races I've been in.
Re: A Very Unusual Camera That Emphasizes Time Over Space
#19It seems like it would be simple enough to convert a video into an image like these by isolating a single column of pixels from each frame and putting them together chronologically.
Yeah, that was fun: #starting at 467s and outputting the images of the next 3 seconds ffmpeg -ss 467 -t 3 -i video.mkv output.%04d.png # crop image to 1px slices 280 pixels from the left. gm mogrify -crop 1x+280+0 *.png # stitch them gm montage -border 0 -geometry +0+0 -tile x1 *.png image.jpg Perfect example how easy and straightforward it is to use command line utilities. Now someone just has to find movies with st…
P.S. you can use "output.%03d.png" to zero pad the output to 011 (and %04d for 0011 etc.)
Re: A Very Unusual Camera That Emphasizes Time Over Space
#20Slit scan photography has been used artistically before: http://www.cabinetmagazine.org/issues/25/belden-adams.php (the picture of the runner and the cyclist is nicely mindbending) And pretty much everyone here would be familiar with a couple of artistic uses of slit-scan photography - the opening credits of Doctor Who ( http://h2g2.com/approved_entry/A907544 ) and the ending of 2001: A Space Odyssey.