Reputation: 2537
Any suggestions for Java image manipulation libraries? I want to find a way of getting the coordinates of say, a line.
Thanks.
Upvotes: 2
Views: 3352
Reputation: 4143
Java is fine for vector calculations on modern hardware. Unfortunately, raster libraries written purely in Java (e.g. ImageJ) is much slower compared to their native counterparts. From what I can see, this happens because:
After trying several approaches, we ended with a native library based on FreeImage and TurboJPEG that does processing for us. Our java app (Visual Watermark) calls it via JNI interface.
Upvotes: 0
Reputation: 232
Upvotes: 2
Reputation: 743
After reading your comments it seems you need Vector manipulation stuff.
JTS is very popular in this field. Take a look at it - http://www.vividsolutions.com/jts/jtshome.htm . JTS Topology Suite is an API of 2D spatial predicates and functions. Also its Free and Open Source.
Your question is bit confusing. When you say "Image Manipulation" many people will think of scalars.
Upvotes: 1