Add a few docstrings.

This commit is contained in:
Ralf Gommers
2009-10-13 15:13:30 +02:00
parent abc27268c2
commit 03bd107368
3 changed files with 7 additions and 1 deletions
+3
View File
@@ -1,3 +1,6 @@
"""Image Processing SciKit (Toolbox for SciPy)"""
import os.path
data_dir = os.path.join(os.path.dirname(__file__), 'data')
+3
View File
@@ -1,3 +1,6 @@
"""Utilities to read and write images in various formats."""
from pil_imread import *
from sift import *
from collection import *
+1 -1
View File
@@ -1,4 +1,4 @@
"""Read and write image files."""
"""Data structures to hold collections of images, with optional caching."""
from __future__ import with_statement