Skip to content

Instantly share code, notes, and snippets.

@ZGainsforth
Created January 27, 2016 00:16
Show Gist options
  • Select an option

  • Save ZGainsforth/83ff7eaacdbbc67e7900 to your computer and use it in GitHub Desktop.

Select an option

Save ZGainsforth/83ff7eaacdbbc67e7900 to your computer and use it in GitHub Desktop.
IPython script for converting text images to tif images.
%pylab
import tifffile
import glob
f = glob.glob(‘*.tsv’)
for x in f:
n = genfromtxt(x).astype('float32')
tifffile.imsave(x+'.tif', n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment