sudo apt-get install python-libtiff
at a terminal.
Update: This does not appear to work in Ubuntu 14.04. It results in installation of version 0.3.0, which I believe has been replaced by 0.4.0. You can download the newest version at https://pypi.python.org/pypi/libtiff/ then unpack it, cd to the directory, and run
sudo python setup.py install
For some reason you will need to move out of the downloaded directory in order to actually test it, though. Open a python interactive prompt and make sure that you can import it:
from libtiff import TIFF
Below is a snippet of some code that I've been using to open a 2-channel (2-color) image stack and arrange the dimensions in a way that I find intuitive (x,y,z,color).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from libtiff import TIFFfile | |
from libtiff import TIFF | |
def read(fileName): | |
""" | |
Script to import tif file from imageJ, | |
usage: zstack = tiff.read(inFileName) | |
PTW 2015/01/29 | |
""" | |
tiff = TIFFfile(fileName) | |
samples, sample_names = tiff.get_samples() | |
outList = [] | |
for sample in samples: | |
outList.append(np.copy(sample)[...,np.newaxis]) | |
out = np.concatenate(outList,axis=-1) | |
out = np.rollaxis(out,0,3) | |
out = np.flipud(out) | |
tiff.close() | |
return out | |
def write_stack(fileName, array, compression=None): | |
""" | |
Script to export tif file to imageJ, | |
usage: tiff.write_stack(outFileName, array, compression=None) | |
PTW 2015/04/22 | |
""" | |
#NEED: to document and decide about dealing with array with fewer dimensions than 4... | |
outTiff = TIFF.open(fileName, mode='w') | |
a = np.flipud(array) | |
a = np.rollaxis(a, 3, 0) | |
for zInd in range(a.shape[3]): | |
outTiff.write_image(a[:,:,:,zInd],compression=compression, write_rgb=True) | |
outTiff.close() | |
return None |
No comments:
Post a Comment