From: Andy A. <ax...@gm...> - 2005-07-28 02:56:58
|
On 7/27/05, Paul Kienzle <pki...@us...> wrote: >=20 > On Jul 26, 2005, at 3:57 AM, Stefan van der Walt wrote: >=20 > > On Tue, Jul 26, 2005 at 12:06:14AM -0400, Andy Adler wrote: > >> Damn. libMagick API versions was a problem three years ago. I decided = to > >> ignore them for a few years to hope they sorted themselves out. Looks = like I'll > >> have to wait for another few years. > > > > I hoped that we could use libraries like libgd or libimlib, but these > > are all huge overkill. >=20 > Can the additional features of these libraries be exposed to octave, > and maybe replace some of the other functions in the image processing > toolbox? For a general purpose image processing interface, the libMagick API is really the best. It transparently handles all image formats and offers the ability to do lots of image processing operations. Unfortunately,=20 different versions change significantly, so the code will be littered with #ifdefs. This still may be the best solution. If imread depends on=20 imagemagick binaries, then depending on the libraries should be OK. Andy |