diff --git a/.gitignore b/.gitignore index 6130346..1a5c508 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ run.py # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] - +.idea/ # C extensions *.so diff --git a/run.py b/run.py deleted file mode 100644 index 0c1f76b..0000000 --- a/run.py +++ /dev/null @@ -1,14 +0,0 @@ -from nd2reader import Nd2 -from pprint import pprint -import numpy as np -from skimage import io - - -for image_set in Nd2("/home/jim/Desktop/nd2hacking/YFP-dsRed-GFP-BF.nd2").image_sets(0): - for image in image_set: - print(image.timestamp, image._channel, image._z_level) - print("") - -# n = Nd2("/home/jim/Desktop/nd2hacking/test-141111.nd2") - -