Re: [Tutor] Image Processing

2012-12-18 Thread Prasad, Ramit
Ashkan Rahmani wrote: > > I have developed some simple c++/qt/opencv application with face > detection functionality. > for some reasons I'm going to start again them and I wan to use python 3. > Unfortunately I found opencv not supported in python 3. > 1- as I'm new in python programming, is pyth

Re: [Tutor] Image Processing

2012-12-17 Thread Ashkan Rahmani
Hello Eike, Thank you for reply... On Tue, Dec 18, 2012 at 1:09 AM, Eike Welk wrote: > Hello Ashkan! > > > On Saturday 15.12.2012 23:20:31 Ashkan Rahmani wrote: >> I have developed some simple c++/qt/opencv application with face >> detection functionality. >> for some reasons I'm going to start a

Re: [Tutor] Image Processing

2012-12-17 Thread Eike Welk
Hello Ashkan! On Saturday 15.12.2012 23:20:31 Ashkan Rahmani wrote: > I have developed some simple c++/qt/opencv application with face > detection functionality. > for some reasons I'm going to start again them and I wan to use python 3. > Unfortunately I found opencv not supported in python 3. >

Re: [Tutor] Image Processing

2012-12-15 Thread Alan Gauld
On 15/12/12 19:50, Ashkan Rahmani wrote: 3- Is there any other image processing library for python 3? 4- Basically python 3 or 2.7 is suitable for image processing? PIL is the defacto standard for image processing on Python. It is officially only available on Python 2.7 (although I think I saw

[Tutor] Image Processing

2012-12-15 Thread Ashkan Rahmani
I have developed some simple c++/qt/opencv application with face detection functionality. for some reasons I'm going to start again them and I wan to use python 3. Unfortunately I found opencv not supported in python 3. 1- as I'm new in python programming, is python 3 good choice for me? 2- Opencv

Re: [Tutor] image processing

2009-03-06 Thread Kent Johnson
On Fri, Mar 6, 2009 at 7:05 PM, Harris, Sarah L wrote: > Could someone please let me know where I can find 'lots' of examples of > image processing using python? Particularly MODIS and ASTER examples. > Any feedback will be greatly appreciated. There is one complete example here: http://pyevolve.

[Tutor] image processing

2009-03-06 Thread Harris, Sarah L
Could someone please let me know where I can find 'lots' of examples of image processing using python? Particularly MODIS and ASTER examples. Any feedback will be greatly appreciated. Regards Sarah ___ Tutor maillist - Tutor@python.org http://mail.pyth

Re: [Tutor] image processing

2008-09-23 Thread Emile van Sebille
jeremiah wrote: I'm trying to do simple image manipulation but am getting an error. any ideas what i am doing wrong here? Thanks JJ #!/usr/bin/python import ImageFilter,Image name="test.jpg" file=open("./"+name,"w") Right here you're opening the file in write mode, in effect creating a new f

Re: [Tutor] image processing

2008-09-23 Thread Jerry Hill
On Tue, Sep 23, 2008 at 5:38 PM, jeremiah <[EMAIL PROTECTED]> wrote: > I'm trying to do simple image manipulation but am getting an error. any > ideas what i am doing wrong here? > > file=open("./"+name,"w") > pic=Image.open(file) You're opening the file for "w"riting, then asking PIL to read it.

[Tutor] image processing

2008-09-23 Thread jeremiah
I'm trying to do simple image manipulation but am getting an error. any ideas what i am doing wrong here? Thanks JJ #!/usr/bin/python import ImageFilter,Image name="test.jpg" file=open("./"+name,"w") pic=Image.open(file) pic.rotate(45) pic.save("new_" + name) pic.show() the error: Traceback (mo