JAI.create functions

Hi,

I've just started with JAI and have seen and used various functions such as gradientmagnitude, convolution etc.. by calling JAI.create("gradientmagnitude", ....) and JAI.create("convolution", ...)

All work fine, but I was wondering where I can find a list of all the operations that JAI.create method can take as the first string parameter... I can't seem to find any documentation of what strings/operations are available in the API documentation..

Any lists or links to places with lists of the operations JAI.create will accept would be gratefully received.

Thanx in anticipation,

Luke

aka Phantom*Breeze

[663 byte] By [ltmorgan] at [2007-9-26 4:50:51]
# 1

Look at the Java doc for the javax.media.jai.operator package. Each class in this package represents an operator (which can be applied using the JAI.create() method). The Java doc for each class comes with the resource and parameter lists.

The JAI home page used to have a quick reference guide with a description of all the operators. I couldn't find it anymore. It is probably hidden somewhere. Anyways, the JAI Java doc should give you the complete list.

larryhr at 2007-6-29 18:42:28 > top of Java-index,Security,Cryptography...
# 2
Hi,Thanx for that, just what I needed. For some reason I just couldn't find any reference to it in the javadoc for JAI class.CheersLukeaka Phantom*Breeze
ltmorgan at 2007-6-29 18:42:28 > top of Java-index,Security,Cryptography...
# 3

I found this link:

http://java.sun.com/products/java-media/jai/forDevelopers/quickref/quickref.doc.html

This is a list with a short description of all the JAI 1.0.2 operators.

JAI 1.1 has a few more operators. Also, some of the operators in JAI 1.1 have different parameters. For example, Histogram.

larryhr at 2007-6-29 18:42:28 > top of Java-index,Security,Cryptography...