brianfromoregon / photomosaic

Automatically exported from code.google.com/p/photomosaic
1 stars 1 forks source link

Utilize faster image library #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Image resizing is slow, and finding the mean color of an image is slow. 
Find a good library to do this quickly, probably utilizing JNI.

Original issue reported on code.google.com by medo...@gmail.com on 20 Sep 2007 at 4:00

GoogleCodeExporter commented 9 years ago
ImageMagick appears to be a fully-featured and robust image processing library. 
There is a Java interface to it called JMagick, but it has poor documentation.  
I'm
thinking that I'll force the user of this program to have ImageMagick 
installed, and
a particular environment set up so that I can use Runtime.exec() to call it.

Original comment by brianand...@gmail.com on 23 Sep 2007 at 3:59

GoogleCodeExporter commented 9 years ago

Original comment by medo...@gmail.com on 23 Sep 2007 at 4:05

GoogleCodeExporter commented 9 years ago
ImageMagick rocks.  So much so that I decided to push all image pre-processing 
(such
as resizing) outside of this app.  Now I do it manually in the shell using
imagemagick's command line tools. 

Original comment by medo...@gmail.com on 27 Sep 2007 at 12:19