show/hide this revision's text 2 Removed the reference to "pixastic".

A quick google search for "java image processing library" returned pixastic. It doesn't seem to include morphological operations, though.

Generally, image processing operations are time-consuming, so they are often implemented in C or C++ for the sake of speed, so it is not surprising that you are having trouble finding Java code for what you need. You may end up having to roll your own for at least some of them. The operations you have mentioned such as morphology or the median filters are well documented and are fairly simple to implement, especially when you have the matlab functions to look at and to test against.

show/hide this revision's text 1

A quick google search for "java image processing library" returned pixastic. It doesn't seem to include morphological operations, though. Generally, image processing operations are time-consuming, so they are often implemented in C or C++ for the sake of speed, so it is not surprising that you are having trouble finding Java code for what you need. You may end up having to roll your own for at least some of them. The operations you have mentioned such as morphology or the median filters are well documented and are fairly simple to implement, especially when you have the matlab functions to look at and to test against.