scikit-image - Image processing in Python

沈畅
2023-12-01

scikit-image - Image processing in Python

https://scikit-image.org/
scikit-image is a collection of algorithms for image processing. 

1. Download
Stable release - Linux and OSX
scikit-image can be installed from the Python packaging index using sudo pip install -U scikit-image

strong@foreverstrong:~$ sudo pip install -U scikit-image
[sudo] password for strong: 
The directory '/home/strong/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/strong/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting scikit-image
  Downloading scikit_image-0.13.1-cp27-cp27mu-manylinux1_x86_64.whl (35.2MB)
    100% |████████████████████████████████| 35.2MB 44kB/s 
Collecting pillow>=2.1.0 (from scikit-image)
  Downloading Pillow-4.3.0-cp27-cp27mu-manylinux1_x86_64.whl (5.8MB)
    100% |████████████████████████████████| 5.8MB 106kB/s 
Collecting matplotlib>=1.3.1 (from scikit-image)
  Downloading matplotlib-2.1.1-cp27-cp27mu-manylinux1_x86_64.whl (15.0MB)
    100% |████████████████████████████████| 15.0MB 53kB/s 
Requirement already up-to-date: six>=1.7.3 in ./.local/lib/python2.7/site-packages (from scikit-image)
Collecting networkx>=1.8 (from scikit-image)
Collecting scipy>=0.17.0 (from scikit-image)
  Downloading scipy-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl (46.7MB)
    100% |████████████████████████████████| 46.7MB 23kB/s 
Collecting PyWavelets>=0.4.0 (from scikit-image)
  Downloading PyWavelets-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl (5.6MB)
    100% |████████████████████████████████| 5.7MB 46kB/s 
Collecting olefile (from pillow>=2.1.0->scikit-image)
Requirement already up-to-date: numpy>=1.7.1 in ./.local/lib/python2.7/site-packages (from matplotlib>=1.3.1->scikit-image)
Collecting cycler>=0.10 (from matplotlib>=1.3.1->scikit-image)
  Downloading cycler-0.10.0-py2.py3-none-any.whl
Collecting pytz (from matplotlib>=1.3.1->scikit-image)
  Downloading pytz-2017.3-py2.py3-none-any.whl (511kB)
    100% |████████████████████████████████| 512kB 96kB/s 
Collecting subprocess32 (from matplotlib>=1.3.1->scikit-image)
Collecting python-dateutil>=2.0 (from matplotlib>=1.3.1->scikit-image)
  Downloading python_dateutil-2.6.1-py2.py3-none-any.whl (194kB)
    100% |████████████████████████████████| 194kB 56kB/s 
Collecting backports.functools-lru-cache (from matplotlib>=1.3.1->scikit-image)
  Downloading backports.functools_lru_cache-1.4-py2.py3-none-any.whl
Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib>=1.3.1->scikit-image)
  Downloading pyparsing-2.2.0-py2.py3-none-any.whl (56kB)
    100% |████████████████████████████████| 61kB 123kB/s 
Collecting decorator>=4.1.0 (from networkx>=1.8->scikit-image)
  Downloading decorator-4.1.2-py2.py3-none-any.whl
Installing collected packages: olefile, pillow, cycler, pytz, subprocess32, python-dateutil, backports.functools-lru-cache, pyparsing, matplotlib, decorator, networkx, scipy, PyWavelets, scikit-image
  Found existing installation: Pillow 3.1.2
    Uninstalling Pillow-3.1.2:
      Successfully uninstalled Pillow-3.1.2
  Found existing installation: cycler 0.9.0
    Uninstalling cycler-0.9.0:
      Successfully uninstalled cycler-0.9.0
  Found existing installation: pytz 2014.10
    Uninstalling pytz-2014.10:
      Successfully uninstalled pytz-2014.10
  Found existing installation: python-dateutil 2.4.2
    Uninstalling python-dateutil-2.4.2:
      Successfully uninstalled python-dateutil-2.4.2
  Found existing installation: pyparsing 2.0.3
    Uninstalling pyparsing-2.0.3:
      Successfully uninstalled pyparsing-2.0.3
  Found existing installation: matplotlib 1.5.1
    Uninstalling matplotlib-1.5.1:
      Successfully uninstalled matplotlib-1.5.1
  Found existing installation: decorator 4.0.6
    Uninstalling decorator-4.0.6:
      Successfully uninstalled decorator-4.0.6
  Found existing installation: scipy 0.17.0
    DEPRECATION: Uninstalling a distutils installed project (scipy) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Uninstalling scipy-0.17.0:
      Successfully uninstalled scipy-0.17.0
Successfully installed PyWavelets-0.5.2 backports.functools-lru-cache-1.4 cycler-0.10.0 decorator-4.1.2 matplotlib-2.1.1 networkx-2.0 olefile-0.44 pillow-4.3.0 pyparsing-2.2.0 python-dateutil-2.6.1 pytz-2017.3 scikit-image-0.13.1 scipy-1.0.0 subprocess32-3.2.7
strong@foreverstrong:~$

 类似资料: