Categories
Film How to... Photography

How to photograph your own wedding

It’s hard to break a habit of photographing weddings…even at your own wedding, so at our wedding last year (branded as KISTfest), we decided to set up a camera to take a picture every minute in the 2 days prior to the wedding and on the day itself. It’s not every groom that has to think about changing camera batteries, timelapse controller batteries and memory cards (we ended up filling four 4GB cards!) in the build-up to the wedding!

In order to get the best overall feel for the day, we needed the camera to be quite high up, so it was shot from a windowsill, overlooking the main marquee and the space in front; the hub of activity on the day. The windowsill position presented a few challenges with glare from the white frame, rain on the glass and then condensation on the morning of day 2. We also couldn’t go quite as wide as we wanted with the image, as the window frame would have featured. We think it was fairly successful though in capturing the the overall feel of the occasion though and we love freezing individual frames to see some of the great moments captured by the all-seeing eye.

As for camera settings…we didn’t do quite so well. It was one of the first time lapses we’d done and we foolishly decided to go for manual exposure so that you’d get a good feel for the changes in light. On the positive side, this decision gave us some lovely sunrise and sunset transitions of light, fading to and from black. But sadly it also led to some rather over-exposed shots of the marquee roof in bright sunlight and loss of detail at dusk. We’ve learned from that since though in our subsequent time lapses!

Kiri then created a soundscape to accompany the resulting time lapse, using mainly sound bytes from the day of the wedding, but a few off-the-shelf sounds to fill the gaps in the first two days.

Will we now be offering time lapse services as part of our wedding photography offerings? We’ll have to see when we get back from our travels!

Categories
Uncategorized

Splitting a .mpo file

3D photography is something that I was massively into for a couple of years, starting when 3D films were beginning to make a resurgence at the cinema and 3D televisions were just entering the market. In that time I bought a Fujifilm W1 3D camera and a couple of 3D Loreo lenses so that I could take stereoscopic images using my existing SLRs.

loreolensfront

The issue for me was always how to view the photographs afterwards; lenticular prints (ridged prints that let your right and left eye see different images) were the best option, but on my old photography site (srphotos.co.uk… which will soon be owned by someone else) I wanted to give people options of how to view the photos. The options I gave were red / cyan anaglyphs (viewable using red / cyan glasses) or stereoscopic pictures (viewable using stereoscopic glasses, or by using the “magic eye” technique of going slightly cross-eyed.

ZMR0063d-stereo

Yes, I even had a bit of a foray into 3D wedding photography, with mainly positive feedback.

It was easy to manipulate the photos I’d taken on my SLRs into those formats, but I had a bit of a pain with the “.mpo” format produced by the Fujifilm W1. It comes with its own software bundle for Windows and Mac…I used (and continue to use) Ubuntu. So, I wrote a little bash script to help to batch extract the .mpo format images into something more useful for my standard image-processing workflow. It relies on ImageMagick and ExifTool, then I use AnaBuilder to further play (manually) with the anaglyph images it creates.


sudo apt-get install imagemagick
sudo apt-get install libimage-exiftool-perl

Credit should go to the 3D photography blog for getting me started with the exiftool commands. I’ll put in my standard caveat: the code below is probably sub-optimal, but it worked for me.


for img in *.mpo
do
echo " splitting " $img;

imgName=${img%.mpo}

# create temporary left and right images
exiftool -trailer:all= $img -o $imgName"_L.jpg"
exiftool $img -mpimage2 -b > $imgName"_R.jpg"

echo " combining left and right for " $imgName;
# create stereo image
convert $imgName"_L.jpg" $imgName"_R.jpg" +append $imgName"-stereo.jpg"

# create red-blue image and resize it for anaBuilder (x dimension of 2000 pixels)
composite -stereo 0 $imgName"_L.jpg" $imgName"_R.jpg" $imgName"-redbluetmp.jpg"

# extract the dimensions of the image
pixelX=$(identify $imgName"-redbluetmp.jpg" | sed 's/^.*JPEG \(.*\)x.*$/\1/' | cut -d' ' -f2);
pixelY=$(identify $imgName"-redbluetmp.jpg" | sed 's/^.*x\(.*\)+.*$/\1/' | cut -d'+' -f1);

if [ $pixelX -gt $pixelY ] ; then
tempsize=`echo "scale=4; 2000/$pixelX" | bc`;
else
tempsize=`echo "scale=4; 2000/$pixelY" | bc`;
fi

size=`echo "scale=4; $tempsize*100" | bc`;

convert $imgName"-redbluetmp.jpg" -resize $size% $imgName"-redblue.jpg"

# remove the temporary images
echo " removing temporary images"
rm $imgName"_L.jpg"
rm $imgName"_R.jpg"
rm $imgName"-redbluetmp.jpg"
done

I’ll admit that I’ve now moved away from 3D photography – whilst it was fun and niche, it was a bit of a distraction for me and I think in its current form it will only ever be a gimmick. What I’m waiting for is proper 3D – filming from multiple angles, then recreating holographically!