21 Jul
2013
21 Jul
'13
4:37 a.m.
Hi Ronnie, On Jul 21, 2013 10:00 AM, "Ronnie Ghose" <ronnie.ghose@gmail.com> wrote:
So in skimage/colors why does it matter if the array is contiguous? Is
this for Cython operations later?
Yeah it is mainly for using memory views in Cython which is initialized as C contiguous. `cdef some_type[:. ::1] var_name` In thus case ::1 is for C contiguous. Chintak