mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-03 19:14:46 +08:00
doc: Add analysis API.
This commit is contained in:
@@ -5,7 +5,9 @@ API Reference
|
||||
|
||||
.. toctree::
|
||||
|
||||
scikits.image.analysis
|
||||
scikits.image.color
|
||||
scikits.image.filter
|
||||
scikits.image.io
|
||||
scikits.image.opencv
|
||||
scikits.image.transform
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
.. AUTO-GENERATED FILE -- DO NOT EDIT!
|
||||
|
||||
Module: :mod:`analysis`
|
||||
=======================
|
||||
.. automodule:: scikits.image.analysis
|
||||
|
||||
.. currentmodule:: scikits.image.analysis
|
||||
.. autosummary::
|
||||
|
||||
scikits.image.analysis.shortest_path
|
||||
|
||||
shortest_path
|
||||
-------------
|
||||
|
||||
.. autofunction:: scikits.image.analysis.shortest_path
|
||||
|
||||
@@ -37,14 +37,35 @@ Inheritance diagram for ``scikits.image.io``:
|
||||
.. autosummary::
|
||||
|
||||
scikits.image.io.imread
|
||||
scikits.image.io.imsave
|
||||
scikits.image.io.imshow
|
||||
scikits.image.io.load_plugin
|
||||
scikits.image.io.load_sift
|
||||
scikits.image.io.load_surf
|
||||
scikits.image.io.plugins
|
||||
scikits.image.io.show
|
||||
scikits.image.io.use_plugin
|
||||
|
||||
imread
|
||||
------
|
||||
|
||||
.. autofunction:: scikits.image.io.imread
|
||||
|
||||
imsave
|
||||
------
|
||||
|
||||
.. autofunction:: scikits.image.io.imsave
|
||||
|
||||
imshow
|
||||
------
|
||||
|
||||
.. autofunction:: scikits.image.io.imshow
|
||||
|
||||
load_plugin
|
||||
-----------
|
||||
|
||||
.. autofunction:: scikits.image.io.load_plugin
|
||||
|
||||
load_sift
|
||||
---------
|
||||
|
||||
@@ -55,3 +76,18 @@ load_surf
|
||||
|
||||
.. autofunction:: scikits.image.io.load_surf
|
||||
|
||||
plugins
|
||||
-------
|
||||
|
||||
.. autofunction:: scikits.image.io.plugins
|
||||
|
||||
show
|
||||
----
|
||||
|
||||
.. autofunction:: scikits.image.io.show
|
||||
|
||||
use_plugin
|
||||
----------
|
||||
|
||||
.. autofunction:: scikits.image.io.use_plugin
|
||||
|
||||
|
||||
@@ -10,7 +10,6 @@ def configuration(parent_package='', top_path=None):
|
||||
def add_test_directories(arg, dirname, fnames):
|
||||
if dirname.split(os.path.sep)[-1] == 'tests':
|
||||
config.add_data_dir(dirname)
|
||||
print "Added", dirname
|
||||
|
||||
# Add test directories
|
||||
from os.path import isdir, dirname, join, abspath
|
||||
|
||||
Reference in New Issue
Block a user