Class operator2DInt

java.lang.Object
  |
  +--operator
        |
        +--operator2DInt
Direct Known Subclasses:
closing, dilation, erosion, hitAndMiss, kernel3x3ThreeState, kernel3x3TwoState, opening, thickening, thinning

public abstract class operator2DInt
extends operator

All operators that deal with image2DInt images extend this class.


Fields inherited from class operator
box, name, panel, parameters, type
 
Constructor Summary
operator2DInt()
           
 
Method Summary
 image2DInt getInput1()
          Returns input1.
 image2DInt getInput2()
          Returns input2.
 image2DInt getOutput1()
          Returns output1.
 image2DInt getOutput2()
          Returns output2.
 void link1To1(operator linkOp)
          Links output1 of this operator to input1 of another operator.
 void link1To2(operator linkOp)
          Links output1 of this operator to input2 of another operator.
 void link2To1(operator linkOp)
          Links output2 of this operator to input1 of another operator.
 void link2To2(operator linkOp)
          Links output2 of this operator to input2 of another operator.
 void setInput1(image x)
          Sets input1 to the specified image, converting if necessary.
 void setInput2(image x)
          Sets input2 to the specified image, converting if necessary.
 
Methods inherited from class operator
getBox, getName, getParameters, getType, go, loadParameters, propagate, propagateSingleLink, saveOperator, saveParameters, setBox, setName, setType, showParameters, updateParameters
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

operator2DInt

public operator2DInt()
Method Detail

getInput1

public image2DInt getInput1()
Returns input1.
Returns:
input1 of this operator

getInput2

public image2DInt getInput2()
Returns input2.
Returns:
input2 of this operator

getOutput1

public image2DInt getOutput1()
Returns output1.
Returns:
output1 of this operator

getOutput2

public image2DInt getOutput2()
Returns output2.
Returns:
output2 of this operator

setInput1

public void setInput1(image x)
Sets input1 to the specified image, converting if necessary.
Parameters:
x - the image to be used as input1
Overrides:
setInput1 in class operator

setInput2

public void setInput2(image x)
Sets input2 to the specified image, converting if necessary.
Parameters:
x - the image to be used as input2
Overrides:
setInput2 in class operator

link1To1

public void link1To1(operator linkOp)
Links output1 of this operator to input1 of another operator.
Parameters:
linkOp - the operator to link to
Overrides:
link1To1 in class operator

link1To2

public void link1To2(operator linkOp)
Links output1 of this operator to input2 of another operator.
Parameters:
linkOp - the operator to link to
Overrides:
link1To2 in class operator

link2To1

public void link2To1(operator linkOp)
Links output2 of this operator to input1 of another operator.
Parameters:
linkOp - the operator to link to
Overrides:
link2To1 in class operator

link2To2

public void link2To2(operator linkOp)
Links output2 of this operator to input2 of another operator.
Parameters:
linkOp - the operator to link to
Overrides:
link2To2 in class operator