unwrap: variable renaming

This commit is contained in:
Gregor Thalhammer
2013-11-22 10:42:27 +01:00
committed by Jostein Bø Fløystad
parent adb9344828
commit 91a621b646
2 changed files with 501 additions and 500 deletions
File diff suppressed because it is too large Load Diff
+1
View File
@@ -10,6 +10,7 @@ def unwrap2D(float[:,::1] array, unsigned char[:,::1] mask,
cdef float[:,::1] unwrapped_array = np.empty_like(array)
cdef int h = array.shape[0]
cdef int w = array.shape[1]
#TODO: check for masked array/
unwrap(&array[0,0],
&unwrapped_array[0,0],
&mask[0,0],