#!/bin/bash
############################################################
# View HDR images
############################################################

if [ -z "$1" ]; then
   echo "View HDR images";
   echo "Usage: pfsv <image> [<image>...]"
   exit 0;
fi

pfsin "$@" | pfsview
