Skip to content

Instantly share code, notes, and snippets.

@medina
Created September 12, 2014 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save medina/81721d1311ea1bfa6fcf to your computer and use it in GitHub Desktop.
Save medina/81721d1311ea1bfa6fcf to your computer and use it in GitHub Desktop.
whiteboard snapshot cleaner-upper
#!/bin/bash
if [ -z "$1" -o -z "$2" ]
then
echo "Usage: $0 infile outfile"
exit 1
fi
convert "$1" \
-morphology Convolve DoG:15,100,0 \
-negate \
-normalize \
-blur 0x1 \
-channel RBG \
-level 60%,91%,0.1 \
"$2"
convert -monochrome "$2" "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment