picture
Class Correlation

java.lang.Object
  |
  +--picture.Combination
        |
        +--picture.Correlation

public class Correlation
extends Combination

Implementiert eine Korellation zwischen zwei Layer-Objekten. Beispiel: Seien a und b Layer-Objekte. Gesucht ist dann die Korellation von a und b. Dies ist dann mit folgender Zeile realisierbar:

   Layer aKorrB = (new Correlation(a)).of(b);
 


Constructor Summary
Correlation()
           
 
Method Summary
 Picture of(Picture a, Picture b)
          Erzeugt die Korellation von a und b.
 Layer of(ProgressHandler ph, Layer a, Layer b)
           
 
Methods inherited from class picture.Combination
createNewInstance, of
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Correlation

public Correlation()
Method Detail

of

public Layer of(ProgressHandler ph,
                Layer a,
                Layer b)
         throws PictureException
Overrides:
of in class Combination

of

public Picture of(Picture a,
                  Picture b)
           throws PictureException
Erzeugt die Korellation von a und b.

Diese Methode unterstuetzt den Progress-Listener-Mechanismus der Klasse Layer und wirft 6 * a.width ProgressEvents aus.

Overrides:
of in class Combination
Parameters:
a: - erster Operand
b: - zweiter Operand
Returns:
a korreliert mit b.