Re: [Numpy-discussion] Trying to implement the array interface

2009-01-14 Thread Jarrod Millman
On Wed, Jan 14, 2009 at 3:17 AM, Mark Asbach wrote: > I'm currently extending the Python wrapper for the Open Computer Vision > Library (opencv) with the goal to interface numerical libraries as seemless > as possible. Unfortunately, it doesn't seem to be that easy ;-) This is really great. Than

Re: [Numpy-discussion] Trying to implement the array interface

2009-01-14 Thread Travis E. Oliphant
Mark Asbach wrote: > Hi there, > > I'm currently extending the Python wrapper for the Open Computer > Vision Library (opencv) with the goal to interface numerical libraries > as seemless as possible. Unfortunately, it doesn't seem to be that > easy ;-) > > What I've done so far: > > - Added an _

Re: [Numpy-discussion] Trying to implement the array interface

2009-01-14 Thread Matthieu Brucher
2009/1/14 Mark Asbach : > Hi there, > > I'm currently extending the Python wrapper for the Open Computer Vision > Library (opencv) with the goal to interface numerical libraries as seemless > as possible. Unfortunately, it doesn't seem to be that easy ;-) > > What I've done so far: > > - Added an _

Re: [Numpy-discussion] Trying to implement the array interface

2009-01-14 Thread Gael Varoquaux
On Wed, Jan 14, 2009 at 12:17:40PM +0100, Mark Asbach wrote: > - Added an __array_interface__ property to the Python side of OpenCV data > structures (matrices and images) [...] > - Added parsing the __array_interface__ of Python objects passed to OpenCV > methods. [...] > I've tried using the

[Numpy-discussion] Trying to implement the array interface

2009-01-14 Thread Mark Asbach
Hi there, I'm currently extending the Python wrapper for the Open Computer Vision Library (opencv) with the goal to interface numerical libraries as seemless as possible. Unfortunately, it doesn't seem to be that easy ;-) What I've done so far: - Added an __array_interface__ property to