mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-11 21:43:17 +08:00
Modify numpy cimport order to satisfy Cython 0.13.
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
# -*- python -*-
|
||||
|
||||
import ctypes
|
||||
import numpy as np
|
||||
|
||||
cimport numpy as np
|
||||
import numpy as np
|
||||
|
||||
from python cimport *
|
||||
from stdlib cimport *
|
||||
from opencv_type cimport *
|
||||
@@ -1572,7 +1573,7 @@ Using standard sigma for small kernels (3x3 to 7x7)
|
||||
gives better speed.''')
|
||||
def cvSmooth(np.ndarray src, int smoothtype=CV_GAUSSIAN, int param1=3,
|
||||
int param2=0, double param3=0, double param4=0,
|
||||
bool in_place=False):
|
||||
bint in_place=False):
|
||||
|
||||
validate_array(src)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user