To obtain access to a larger set of rice images (RGB, FLUO, NIR, IR), please contact PI: H. Walia
* Publications:
* Campbell MT, Knecht AC, Berger B, Brien CJ, Wang D, Walia H. Integrating Image-Based Phenomics and Association Analysis to Dissect the Genetic Architecture of Temporal Salinity Responses in Rice. 2015, Plant Physiology. `Link <http://www.plantphysiol.org/content/early/2015/06/25/pp.15.00450.short>`_.
* Knecht AC, Campbell MT, Caprez A, Swanson DR, Walia H. Image Harvest: An open source platform for high-throughput plant image processing and analysis. 2016, JXB. (In press).
* `Developing a processing workflow on a local computer <http://cropstressgenomics.org/data/html/ex_script_camera2.html>`_
* `Executing processing workflows on a computing cluster <http://cropstressgenomics.org/data/html/ex_workflow_1.html>`_
# Download PyMeanShift and install, assuming directory is 'pymeanshift'
# Download PyMeanShift and install, assuming directory is 'pymeanshift'
cd pymeanshift
cd pymeanshift
sudo python setup.py install
sudo python setup.py install
# Download Image Harvest and install, assuming directory is 'ih.git'
# Download Image Harvest and install, assuming directory is 'ih.git'
cd ih.git
cd ih.git
sudo python setup.py install
sudo python setup.py install
# That's it!
# That's it!
Windows
Windows
--------
--------
...
@@ -184,7 +184,7 @@ Windows requires a little more work, and in fact, windows doesn't even come with
...
@@ -184,7 +184,7 @@ Windows requires a little more work, and in fact, windows doesn't even come with
Installing requires adjusting some system settings as well. You will need to manually
Installing requires adjusting some system settings as well. You will need to manually
install several packages before `pip <https://pypi.python.org/pypi/pip>`_ can put
install several packages before `pip <https://pypi.python.org/pypi/pip>`_ can put
in work. First, install `python2.7 <https://www.python.org/downloads/>`_. Next,
in work. First, install `python2.7 <https://www.python.org/downloads/>`_. Next,
you have to add python to your PATH environment variable.
you have to add python to your PATH environment variable.
* Windows 7: Right click on Computer > Properties > Advanced system settings > Advanced Tab > Enviornment Variables
* Windows 7: Right click on Computer > Properties > Advanced system settings > Advanced Tab > Enviornment Variables
* Windows 8: Control Panel > System > Advanced system settings > Advanced Tab > Environment Variables
* Windows 8: Control Panel > System > Advanced system settings > Advanced Tab > Environment Variables
...
@@ -193,7 +193,7 @@ You should see two boxes. One that says "User variables for <user>", and the ot
...
@@ -193,7 +193,7 @@ You should see two boxes. One that says "User variables for <user>", and the ot
"System variables". Scroll through the "System variables" box until you find the 'Path' variable.
"System variables". Scroll through the "System variables" box until you find the 'Path' variable.
It should look like lots of paths separated by semicolons. Edit Path, and add two new paths,
It should look like lots of paths separated by semicolons. Edit Path, and add two new paths,
'C:\\Python2.7\\' and 'C:\\Python2.7\\Scripts\\'. Make sure to keep each path separated by a semicolon.
'C:\\Python2.7\\' and 'C:\\Python2.7\\Scripts\\'. Make sure to keep each path separated by a semicolon.
Next, you need to install a `c++ compiler <http://www.microsoft.com/en-us/download/details.aspx?id=44266>`_ --
Next, you need to install a `c++ compiler <http://www.microsoft.com/en-us/download/details.aspx?id=44266>`_ --
simply download the installer and run it.
simply download the installer and run it.
Finally, download and install `pip <https://pypi.python.org/pypi/pip>`_. There should
Finally, download and install `pip <https://pypi.python.org/pypi/pip>`_. There should
simply be a giant script you copy to a local file, and execute with python.
simply be a giant script you copy to a local file, and execute with python.
...
@@ -201,7 +201,7 @@ simply be a giant script you copy to a local file, and execute with python.
...
@@ -201,7 +201,7 @@ simply be a giant script you copy to a local file, and execute with python.
Now, you can install all the dependent python packages by finding the correct version for your os,
Now, you can install all the dependent python packages by finding the correct version for your os,
and downloading them from this `link <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_. You will need the same
and downloading them from this `link <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_. You will need the same
list as above that is, `numpy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy>`_, `scipy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy>`_, `pandas <http://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas>`_, `matplotlib <http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib>`_, and `opencv <http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv>`_.
list as above that is, `numpy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy>`_, `scipy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy>`_, `pandas <http://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas>`_, `matplotlib <http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib>`_, and `opencv <http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv>`_.
.. code-block:: bash
.. code-block:: bash
...
@@ -212,11 +212,7 @@ list as above that is, `numpy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy>
...
@@ -212,11 +212,7 @@ list as above that is, `numpy <http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy>
# Then, download Image Harvest and install, assuming directory is 'ih.git'
# Then, download Image Harvest and install, assuming directory is 'ih.git'
cd ih.git
cd ih.git
python setup.py install
python setup.py install
One final note, when loading images, python expects forward slashes not back slashes,
One final note, when loading images, python expects forward slashes not back slashes,
and does not expect the C: for absolute paths. If you have an image called "test.jpg"
and does not expect the C: for absolute paths. If you have an image called "test.jpg"
in your downloads folder, the correct path for python is "/Users/username/Downloads/test.jpg".
in your downloads folder, the correct path for python is "/Users/username/Downloads/test.jpg".