Skip to content

Instantly share code, notes, and snippets.

@tlasica
Created September 25, 2016 15:48
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlasica/ffbd02719787467a8b312a097591b0e6 to your computer and use it in GitHub Desktop.
Save tlasica/ffbd02719787467a8b312a097591b0e6 to your computer and use it in GitHub Desktop.
enhance photos using imagemagick
mkdir enhanced
for sp in *.jpg; do
echo "Converting Image: $sp"
convert -auto-gamma -auto-level -normalize $sp "enhanced/$sp"
done
# from http://superuser.com/questions/370920/auto-image-enhance-for-ubuntu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment