Skip to content

Instantly share code, notes, and snippets.

@Frodox
Forked from demofly/clean-whiteboard.sh
Created April 6, 2014 11:12
Show Gist options
  • Save Frodox/10004605 to your computer and use it in GitHub Desktop.
Save Frodox/10004605 to your computer and use it in GitHub Desktop.
#!/bin/bash
convert $1 -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 $2
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
#!/bin/bash
convert in.jpg \( +clone -blur 0x20 \) -compose Divide_Src -composite -normalize -level 10%,90% -deskew 40% -unsharp 0x5+2+0 out.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment