From 5dd7a827fa485c27507b06a6105d2b5171353cc7 Mon Sep 17 00:00:00 2001 From: Jim Rybarski Date: Wed, 3 Jun 2015 23:50:24 -0500 Subject: [PATCH 1/5] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa0dc03..27c86a0 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,16 @@ Dependencies will automatically be installed if you don't have them. That said, install the following packages before installing nd2reader: #### Ubuntu -`apt-get install python-numpy python-six` (Python 2.x) -`apt-get install python3-numpy python3-six` (Python 3.x) +`apt-get install python-numpy python-six` (Python 2.x) +`apt-get install python3-numpy python3-six` (Python 3.x) #### Other operating systems These have not been tested yet. nd2reader is compatible with both Python 2.x and 3.x. I recommend installing using pip: -`pip install nd2reader` (Python 2.x) or `pip3 install nd2reader` (Python 3.x) +`pip install nd2reader` (Python 2.x) +`pip3 install nd2reader` (Python 3.x) ### ND2s From 495139facad070c0ae2df47b46b65c9d484b05af Mon Sep 17 00:00:00 2001 From: Jim Rybarski Date: Wed, 3 Jun 2015 23:53:02 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27c86a0..99e35f1 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ for image in nd2[:100:2]: for image in nd2[::-1]: # iterate backwards over every image, if you're into that kind of thing - do_something_image.data) + do_something(image.data) ``` ### Image Sets From de22d09393866e04beb9e7407cf2a9a43f3a2a91 Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 10 Jun 2015 15:45:19 -0500 Subject: [PATCH 3/5] resolves #62: added version of NIS Elements --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99e35f1..060e72c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### About -`nd2reader` is a pure-Python package that reads images produced by NIS Elements. +`nd2reader` is a pure-Python package that reads images produced by NIS Elements version 4.0+. It has only been definitely tested on Version 4.30.02 Build 1053. Support for older versions is planned. .nd2 files contain images and metadata, which can be split along multiple dimensions: time, fields of view (xy-plane), focus (z-plane), and filter channel. From ae96bd89567130551a0cfe0f4c3e2060a0b2159c Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 10 Jun 2015 15:45:53 -0500 Subject: [PATCH 4/5] resolves #62: added version of NIS Elements --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 060e72c..d00d151 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### About -`nd2reader` is a pure-Python package that reads images produced by NIS Elements version 4.0+. It has only been definitely tested on Version 4.30.02 Build 1053. Support for older versions is planned. +`nd2reader` is a pure-Python package that reads images produced by NIS Elements 4.0+. It has only been definitely tested on NIS Elements 4.30.02 Build 1053. Support for older versions is planned. .nd2 files contain images and metadata, which can be split along multiple dimensions: time, fields of view (xy-plane), focus (z-plane), and filter channel. From 8207e78f008761afc0975c34d551afa941f59667 Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 10 Jun 2015 15:46:24 -0500 Subject: [PATCH 5/5] resolves #62: fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d00d151..3b831e8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### About -`nd2reader` is a pure-Python package that reads images produced by NIS Elements 4.0+. It has only been definitely tested on NIS Elements 4.30.02 Build 1053. Support for older versions is planned. +`nd2reader` is a pure-Python package that reads images produced by NIS Elements 4.0+. It has only been definitively tested on NIS Elements 4.30.02 Build 1053. Support for older versions is planned. .nd2 files contain images and metadata, which can be split along multiple dimensions: time, fields of view (xy-plane), focus (z-plane), and filter channel.