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
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
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.
>
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
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
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.
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
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
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.
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
10 matches
Mail list logo