python setup.py install
In Python the usage is very straightforward:
import nrrd
frames, options = nrrd.read(fileName)
A digital lab notebook. Topics range from scientific computing using Python to neurobiology of Drosophila.
python setup.py install
import nrrd
frames, options = nrrd.read(fileName)
sudo apt-get install python-libtiff
sudo python setup.py install
from libtiff import TIFF
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 |
sudo python setup.py install
import numpy as np | |
import matplotlib.pyplot as plt | |
plt.ion() | |
from pylsm import lsmreader | |
imageFile = lsmreader.Lsmimage(lsmFileName) | |
imageFile.open() | |
xLen = imageFile.header['Image'][0]['CZ LSM info']['Dimension X'] | |
yLen = imageFile.header['Image'][0]['CZ LSM info']['Dimension Y'] | |
zLen = imageFile.header['Image'][0]['CZ LSM info']['Dimension Z'] | |
numColors = 3 | |
frames = np.zeros((xLen, yLen, zLen, numColors),dtype='uint16') | |
for zPos in range(zLen): | |
redData = np.flipud(imageFile.get_image(stack=zPos, channel=1)) | |
grnData = np.flipud(imageFile.get_image(stack=zPos, channel=0)) | |
frames[:,:,zPos,0] = redData | |
frames[:,:,zPos,1] = grnData | |
fig = plt.figure() | |
ax = fig.add_subplot(111) | |
ax.imshow(frames.max(2)/4096.) |