Skip to content

Instantly share code, notes, and snippets.

@vicente-gonzalez-ruiz
Last active December 27, 2017 19:05
Show Gist options
  • Save vicente-gonzalez-ruiz/b5bfff31dc00811ef6b4a6aa461fa519 to your computer and use it in GitHub Desktop.
Save vicente-gonzalez-ruiz/b5bfff31dc00811ef6b4a6aa461fa519 to your computer and use it in GitHub Desktop.
Shell command for converting data
for i in *.zip; do echo $i; unzip $i; done
for i in *.tiff; do echo $i; convert $i $i.YUV; done
display -size 4096x4096 -depth 8 YUV:171_20120104_120700.tiff.Y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment