• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Image manipulation

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone,

I have an application that compares sets of images and identifies if there are any duplicates. The user is then shown a list of thumbnails of the duplicates and has the option to delete them.

This all works great, but I'm concerned about the performance of the thumbnail generation. The quality of the thumbnail does not matter - the priority is to get the thumbnails generated as quickly as possible.

I can't seem to find anything through google that suggests a 'quick and dirty' thumbnail generation algorithm that has performance as its priority.

Any pointers or advice of how to achieve fast thumbnail generation (even if it means using a third-party library) would be much appreciated!

Thanks
 
Sheriff
Posts: 22848
132
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to Swing/AWT.
 
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since you haven't shown us how you're presently generating the thumbnails, any suggestions for optimization would be assumptive, don't you think?
 
reply
    Bookmark Topic Watch Topic
  • New Topic