All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plugins.haesleinhuepf.implementations.generated.CLIJ2_BinaryUnionBlock Maven / Gradle / Ivy

The newest version!
package plugins.haesleinhuepf.implementations.generated;
import plugins.haesleinhuepf.AbstractCLIJ2Block;
import net.haesleinhuepf.clij2.plugins.BinaryUnion;
// this is generated code. See src/test/java/net/haesleinhuepf/clicy/codegenerator for details
public class CLIJ2_BinaryUnionBlock extends AbstractCLIJ2Block {
   
    /**
     * Computes a binary image (containing pixel values 0 and 1) from two images X and Y by connecting pairs of
     * pixels x and y with the binary union operator |.
     * 
     * All pixel values except 0 in the input images are interpreted as 1.
f(x, y) = x | y
* * Parameters * ---------- * operand1 : Image * The first binary input image to be processed. * operand2 : Image * The second binary input image to be processed. * destination : Image * The output image where results are written into. * */ public CLIJ2_BinaryUnionBlock() { super(new BinaryUnion()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy