Vito Gentile
Vito Gentile

Reputation: 14356

Image processing in Java like MATLAB Image Processing Toolbox

Does it exist a solution for Java that allows to working with images in a very similar way to MATLAB IPT? I mean, are there some libraries to do something like IPT4Java.imfilter(A, F) or IPT4Java.fspecial('average', [3 3])?

If not, what is the best solution to implement this kind of approach?

Upvotes: 3

Views: 972

Answers (2)

Dan D.
Dan D.

Reputation: 32391

Java Advanced Imaging (JAI) supports a multitude set of filters that you can apply on images.

Upvotes: 5

Herr von Wurst
Herr von Wurst

Reputation: 2621

You could have a look at the Java wrapper around OpenCV:

http://code.google.com/p/javacv/

Upvotes: 2

Related Questions