Re: [Numpy-discussion] any news concerning numpy for python-2.6 on windows?

2009-01-14 Thread David Cournapeau
Darren Dale wrote: > Hello, > > I've been developing a numpy based package that I'd like to share with > this list, but I need to test it on windows first. Is there any news > concerning numpy installers for python-2.6 on windows, and is there > any chance of installing on Vista? There will be 2.6

[Numpy-discussion] any news concerning numpy for python-2.6 on windows?

2009-01-14 Thread Darren Dale
Hello, I've been developing a numpy based package that I'd like to share with this list, but I need to test it on windows first. Is there any news concerning numpy installers for python-2.6 on windows, and is there any chance of installing on Vista? Thank you, Darren _

Re: [Numpy-discussion] Complete LAPACK needed (Frank Lagor)

2009-01-14 Thread Jack Yu
Frank Lagor seas.upenn.edu> writes: > > Thanks so much for your help, David. I'm sorry I did not receive your posts previously -- I have the digest mode on and there is a bit of a delay. I'll try to change my options next time I post a request. > Thanks so much again,Frank > > __

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