Skip to content

Commit

Permalink
Merge pull request scikit-image#331 from cgohlke/patch-7
Browse files Browse the repository at this point in the history
DOC: Document correct parameter types.
  • Loading branch information
stefanv committed Sep 30, 2012
2 parents 397484a + 5184be8 commit c841314
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions skimage/_shared/interpolation.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cdef inline double nearest_neighbour_interpolation(double* image, int rows,
Input image.
rows, cols : int
Shape of image.
r, c : int
r, c : double
Position at which to interpolate.
mode : {'C', 'W', 'R', 'N'}
Wrapping mode. Constant, Wrap, Reflect or Nearest.
Expand Down Expand Up @@ -50,7 +50,7 @@ cdef inline double bilinear_interpolation(double* image, int rows, int cols,
Input image.
rows, cols : int
Shape of image.
r, c : int
r, c : double
Position at which to interpolate.
mode : {'C', 'W', 'R', 'N'}
Wrapping mode. Constant, Wrap, Reflect or Nearest.
Expand Down Expand Up @@ -109,7 +109,7 @@ cdef inline double biquadratic_interpolation(double* image, int rows, int cols,
Input image.
rows, cols : int
Shape of image.
r, c : int
r, c : double
Position at which to interpolate.
mode : {'C', 'W', 'R', 'N'}
Wrapping mode. Constant, Wrap, Reflect or Nearest.
Expand Down Expand Up @@ -185,7 +185,7 @@ cdef inline double bicubic_interpolation(double* image, int rows, int cols,
Input image.
rows, cols : int
Shape of image.
r, c : int
r, c : double
Position at which to interpolate.
mode : {'C', 'W', 'R', 'N'}
Wrapping mode. Constant, Wrap, Reflect or Nearest.
Expand Down

0 comments on commit c841314

Please sign in to comment.