This file contains hidden or 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
| # Simple script that transforms a folder of .datx files into .tiff | |
| # Call the script with "python datx_tiff.py folder1 folder2" | |
| # Files will keep the same name | |
| # Useful if you want to run your analysis on Fiji! | |
| import h5py | |
| import numpy as np | |
| import sys | |
| from glob import glob | |
| import cv2 |