Re: Image processing libraries in python

2018-09-14 Thread Thomas Jollans
On 14/09/18 19:04, tejaswi wrote: Hello everyone, I was looking to work with images in python. I saw two packages related to this, Pillow and scipy.ndimage. I was wondering what purposes each of these serve. I've previously used matlab/octave's image processing facilities and found them quite ea

Re: Image processing libraries in python

2018-09-14 Thread MRAB
On 2018-09-14 18:04, tejaswi wrote: Hello everyone, I was looking to work with images in python. I saw two packages related to this, Pillow and scipy.ndimage. I was wondering what purposes each of these serve. I've previously used matlab/octave's image processing facilities and found them quite

Image processing libraries in python

2018-09-14 Thread tejaswi
Hello everyone, I was looking to work with images in python. I saw two packages related to this, Pillow and scipy.ndimage. I was wondering what purposes each of these serve. I've previously used matlab/octave's image processing facilities and found them quite easy to work with, so is scipy the way

Re: Compiling and transporting modules/libraries in python

2009-06-04 Thread Abe
alex23 - Thanks for the tips. I'm using portable python and it's working great so far. I'll come back and try virtualenv if I get stuck again. - Abe -- http://mail.python.org/mailman/listinfo/python-list

Re: Compiling and transporting modules/libraries in python

2009-05-31 Thread alex23
On May 31, 2:27 am, Abe wrote: >     I use python at a home office and in a university computer lab, > but I don't have the administrative rights to install libraries on the > lab computers.  It would be really nice if there were a way I could > put, say, all of numpy into a file "my_numpy.pyc" an

Compiling and transporting modules/libraries in python

2009-05-30 Thread Abe
Hi all - I hope this is a simple question, but I've been running in circles trying to figure it out myself. Is there a good way to wrap up a library (e.g. numpy or matplotlib) so that I can use it on another machine without actually installing it? I use python at a home office and in a univ

Re: How to use my dynamic link libraries in python??

2008-04-11 Thread Diez B. Roggisch
郭勇军 schrieb: > Hello: > My OS is Linux, I compile my dynamic link libraries , and > want to call the function of my dynamic library through python! > How can I realize the function? Please give me some advices! Thanks If the module has a plain C-interface, consider using ctype

Re: How to use my dynamic link libraries in python??

2008-04-10 Thread Benjamin
On Apr 10, 9:21 pm, "郭勇军" <[EMAIL PROTECTED]> wrote: > Hello: > My OS is Linux, I compile my dynamic link libraries , and > want to call the function of my dynamic library through python! > How can I realize the function? Please give me some advices! Thanks You have several opt

How to use my dynamic link libraries in python??

2008-04-10 Thread 郭勇军
Hello: My OS is Linux, I compile my dynamic link libraries , and want to call the function of my dynamic library through python! How can I realize the function? Please give me some advices! Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: Libraries in python

2006-09-02 Thread Diez B. Roggisch
> That's my $0.02 on Python packaging and library dependencies. In my > opinion it's one of the few things that Java got right that Python > didn't. Yeah, sure. Hunting down a subtle class loading bug because of e.g. different xml-api versions in your classpath in just a few hours is a thing jav

Re: Libraries in python

2006-09-02 Thread Daniel
[EMAIL PROTECTED] wrote: > Hy people, I'm new in python and comming from JAVA. > > Something I really like in java is the easy way to add a library to the > project. Just put the jar file in the folder ( WEB-INF/lib ) and > doesn't need to restart the server ( tomcat ). > > Can I do some like using

Re: Libraries in python

2006-09-02 Thread Daniel Nogradi
> Hy people, I'm new in python and comming from JAVA. > > Something I really like in java is the easy way to add a library to the > project. Just put the jar file in the folder ( WEB-INF/lib ) and > doesn't need to restart the server ( tomcat ). > > Can I do some like using python - I'm using apach

Libraries in python

2006-09-01 Thread eduardo . rosa
Hy people, I'm new in python and comming from JAVA. Something I really like in java is the easy way to add a library to the project. Just put the jar file in the folder ( WEB-INF/lib ) and doesn't need to restart the server ( tomcat ). Can I do some like using python - I'm using apache mod_python