Image path, size, and EXIF data

Description:
This script finds all images on your hard drive below a directory and generates a MATLAB structure with path, size, type, and EXIF information. It's useful for anyone who deals with images in MATLAB.
To use it, run the script with the directory name and output file as arguments:
find_images.py /Users/username/Pictures pictures.m
Then in MATLAB, you can load the pictures and view info about them:
> pics = pictures;
>> pics(10)
ans =
path: [1x70 char]
type: 'JPEG'
xdim: 3008
ydim: 2008
focal: '55'
shutter: '1/160'
fnumber: 'f/9'

Author's Homepage:

Script File:
find_images.zip (15.81 KB)