Skip to content

Instantly share code, notes, and snippets.

@vicendominguez
Created February 13, 2014 12:06
Show Gist options
  • Save vicendominguez/8973950 to your computer and use it in GitHub Desktop.
Save vicendominguez/8973950 to your computer and use it in GitHub Desktop.
Convert chroma (00ff00) background color to black to make mask images (jpg)
for a in *.jpg; do convert $a -fuzz 50% -fill black -opaque "#00ff00" -type Grayscale ../MASKS/$a;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment