Si quieres trabajar con la imagen como matriz, puedes usar matplotlib.image.
http://matplotlib.org/users/image_tutorial.html On Wed, Nov 21, 2012 at 8:11 AM, joe di castro <j...@joedicastro.com> wrote: > On 21/11/12 05:38, vladimir castillo wrote: >> Hola me gustaría saber si hay alguna librería para poder cargar una imagen >> desde una ruta en específico. >> >> Ejemplo: >> F = open_imagen('/home/bla/bla/') >> Show() >> _______________________________________________ >> Python-es mailing list >> Python-es@python.org >> http://mail.python.org/mailman/listinfo/python-es >> FAQ: http://python-es-faq.wikidot.com/ >> > > Si, PIL (Python Image Library), > > http://www.pythonware.com/products/pil/index.htm > > Docs: > > http://www.pythonware.com/library/pil/handbook/index.htm > > Por ejemplo: > > from PIL import Image > F = Image.open("/home/usuario/imagen.jpg") > F.show() > > Saludos > > joe di castro > http://joedicastro.com > _______________________________________________ > Python-es mailing list > Python-es@python.org > http://mail.python.org/mailman/listinfo/python-es > FAQ: http://python-es-faq.wikidot.com/ _______________________________________________ Python-es mailing list Python-es@python.org http://mail.python.org/mailman/listinfo/python-es FAQ: http://python-es-faq.wikidot.com/