Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'conversions': 0.07; 'linear': 0.07; 'pil': 0.07; 'users,': 0.07; 'python': 0.09; 'etc).': 0.09; 'fork': 0.09; 'stable.': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.10; 'up-to-date': 0.13; 'student': 0.15; 'bugs,': 0.16; 'curious.': 0.16; 'development?': 0.16; 'hardware.': 0.16; 'recently.': 0.16; 'shape,': 0.16; 'wrote:': 0.17; 'fix': 0.17; 'expanded': 0.17; 'odd': 0.17; 'obviously': 0.18; 'versions': 0.20; 'bit': 0.21; 'fairly': 0.21; 'libraries': 0.22; "i'd": 0.22; 'cc:2**0': 0.23; 'seems': 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'am,': 0.27; 'bugs': 0.27; 'updating': 0.27; '(such': 0.27; 'converting': 0.27; 'library.': 0.27; 'interface': 0.27; "doesn't": 0.28; 'fixed': 0.28; 'subject:development': 0.29; "i'm": 0.29; 'maybe': 0.29; 'actively': 0.30; 'notes': 0.30; 'thursday,': 0.30; 'point': 0.31; 'curious': 0.33; "can't": 0.34; 'received:google.com': 0.34; 'updated': 0.34; '2009.': 0.35; 'received:209.85.220': 0.35; 'subject:?': 0.35; 'received:209.85': 0.35; 'there': 0.35; 'michael': 0.36; 'but': 0.36; 'wanted': 0.36; 'development.': 0.36; 'author': 0.37; 'bad': 0.37; 'reported': 0.37; 'being': 0.37; 'why': 0.37; 'quite': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'mean': 0.38; 'some': 0.38; 'space': 0.39; 'think': 0.40; 'your': 0.60; 'most': 0.61; 'kind': 0.61; 'developed': 0.62; 'course.': 0.62; 'necessarily': 0.63; 'ever': 0.63; 'color': 0.69; 'have?': 0.84; 'median': 0.84; 'routines': 0.84; 'spoiled': 0.84; 'imagine': 0.96 Newsgroups: comp.lang.python Date: Wed, 28 Nov 2012 22:53:32 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=118.209.67.207; posting-account=rmvejQoAAADjh7_64M16SLF-fqObIbgV References: User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 118.209.67.207 MIME-Version: 1.0 Subject: Re: Imaging libraries in active development? From: Alasdair McAndrew To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Message-ID: Lines: 64 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1354172020 news.xs4all.nl 6924 [2001:888:2000:d::a6]:46931 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:34050 I take your point that not being actively developed doesn't necessarily mea= n that the software is bad - but in general healthy software is continuousl= y updated and expanded to meet the needs of its users, or to take advantage= of new algorithms or hardware. And in its current form PIL has a number of limitations: it doesn't allow l= inear filters of arbitrary size or shape, or non-linear filters (such as me= dian filter) of arbitrary size. There doesn't seem to be built in support f= or standard imaging filters: Gaussian, Laplacian, LoG, edge detection, unsh= arp masking and so on. It doesn't seem to have support for color space con= versions (RGB, YIQ, HSV etc). There don't seem to be standard edge detecti= on routines (Laplacian of Gaussian, Canny, etc). And so on. Now maybe som= e of these can be found in other Python libraries, but I can't imagine I'm = the only person who would ever want them in an imaging library. Other libr= aries (scipy.ndimage, scikits-image) do go a long way to addressing my conc= erns. Anyway, I was curious to know why PIL is lacking so much of what I would co= nsider fairly fundamental imaging facilities, and why development seems to = have stalled since 2009. On Thursday, 29 November 2012 05:14:30 UTC+11, Michael Torrie wrote: > On 11/28/2012 05:30 AM, Alasdair McAndrew wrote: >=20 > > I'm investigating Python for image processing (having used Matlab, >=20 > > then Octave for some years). And I'm spoiled for choice: PIL and its >=20 > > fork pillow, scipy.ndimage, scikits-image, mahotas, the Python >=20 > > interface to openCV... >=20 > >=20 >=20 > > However, PIL doesn't seem to be in active development. What I want >=20 > > to know is - what are the current "standard" libraries for image >=20 > > processing in Python which are in active development? >=20 > >=20 >=20 > > I have quite a few image processing student notes which I'm thinking >=20 > > of converting to Python, but I'd like to use the most up-to-date >=20 > > library. >=20 >=20 >=20 > I'm curious. What features do you need that pil doesn't have? Other >=20 > than updating pil to fix bugs, support new image types or new versions >=20 > of Python, what kind of active development do you think it needs to >=20 > have? Maybe pil has all the features the original author wanted and is >=20 > pretty stable. To judge a package on how fast it's changing seems a bit >=20 > odd to me. Obviously you want to know that bugs can get fixed of >=20 > course. Perhaps none have been reported recently.