
Arecanut tree leaves
No better time killer than fiddling with a newly bought camera , and going around looking for light green leaves and rivers and watching the sun die in the horizon. I bought a SONY DSC-W120 last December (7.2MP, 4X zoom with a 4G SD card). The gadget is very sleek and small, with good enough picture quality, easy user controls , macro focus mode (very close focus) and bundled with features like face detection, smile shutter (I still wonder what that algorithm could be) etc.
But a few things I dislike of DSCW120 are – No zoom possible while in video mode(aargh!), noticeable noise while shooting in low contrast locations, very delicate camera parts such as the battery lid, zoom buttons (hope things won’t snap off)

Plantain green
I got a chance to stress-test the device when we shifted our house recently . Pictures were taken to keep the old memoirs every now and then , and most of those turned out to be average( especially in the hands of a newbie
. December08 vacation, back at home I tested my skills again (this time the theme is nature!!). I have them uploaded in flickr .

spot the boat
Most of them are taken with the default settings with compulsory flash, red eye reduction ( yea I know, ugly for sceneries ). But I like many of them, including the arecanut leaves casting a silhouette, the evening scene etc.

Beautiful eve
With an added dropshadow (thanks to ImageMagick, we can have scripts to group-convert images to add drop shadows/effects). nature photographs will look really cool.
Here’s the bash script for mass-converting, Just copy the script to the directory where the images are, and run it. Before adding a drop-shadow I resize the images to a low resolution (running shadow algorthims on 7.2 MP images are daring!). I chose a width of 1440, so that it fits perfectly on a 15.4″ widescreen monitor. Now comes the drop shadow thingy, which is more or less the documented method ( http://www.imagemagick.org/Usage/convolve/#shadow ). It first clones the given image, applies gaussian blur on it and generates the shadow. The original image is given a white background and the layers are merged. The blur mechanism is time consuming but produces better shadows.(there are less costlier methods than ‘-shadow’ , like the ‘montage’ command of ImageMagick)
#!/bin/bash
for file in *.jpg
do
convert $file -resize 1440x1440 working.tmp.jpg
convert working.tmp.jpg \( +clone -background black -shadow 90x16+12+12 \) +swap -background white -layers merge +repage "shadowed_"$file
done