2009/8/16 Robert <[email protected]>: > Is there a function to get the memory address (int) of > (contigious) ndarray data on Python level - like > array.array.buffer_info() ? > I'd need it to pass it to a camera function.
Have a look at the array interface: x.__array_interface__['data'] Regards Stéfan _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
