> Hi all > > Can you help me in a doubt? Is there some efficient way to do a > conversion between an image in the RGB format in an image and the HSI > format (aka, HLS or HSV), in python (PIL or others)?
yes, PIL gives that. look at the page http://www.pythonware.com/library/pil/handbook/image.htm in particular at the <convert> method of image Object in PIL.Image module. Enjoy. P.S. In general I have found in PIL an efficient and complete image processing library to be use from Python. Giovanni Angeli. <[EMAIL PROTECTED]> _______________________________________________ Image-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/image-sig
