Add missing return type to matrix transform function

This commit is contained in:
Johannes Schönberger
2012-08-27 18:15:39 +02:00
parent 501c401dda
commit 99e4264e15
+2 -2
View File
@@ -9,8 +9,8 @@ from skimage._shared.interpolation cimport (nearest_neighbour,
bilinear_interpolation)
cdef inline _matrix_transform(double x, double y, double* H, double *x_,
double *y_):
cdef inline void _matrix_transform(double x, double y, double* H, double *x_,
double *y_):
"""Apply a homography to a coordinate.
Parameters