Package javax.media.jai.operator

Source Code of javax.media.jai.operator.ConjugateDescriptor

/*
* $RCSfile: ConjugateDescriptor.java,v $
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision: 1.1 $
* $Date: 2005/02/11 04:57:32 $
* $State: Exp $
*/
package javax.media.jai.operator;
import java.awt.RenderingHints;
import java.awt.image.RenderedImage;
import java.awt.image.renderable.ParameterBlock;
import java.awt.image.renderable.RenderableImage;
import javax.media.jai.JAI;
import javax.media.jai.OperationDescriptorImpl;
import javax.media.jai.ParameterBlockJAI;
import javax.media.jai.PropertyGenerator;
import javax.media.jai.RenderableOp;
import javax.media.jai.RenderedOp;
import javax.media.jai.registry.RenderableRegistryMode;
import javax.media.jai.registry.RenderedRegistryMode;

/**
* An <code>OperationDescriptor</code> describing the "Conjugate" operation.
*
* <p> The Conjugate operation negates the imaginary components of
* pixel values of a rendered or renderable source image containing
* complex data.  The source image must contain an even number of
* bands with the even-indexed bands (0, 2, ...)  representing the
* real and the odd-indexed bands (1, 3, ...)  the imaginary parts of
* each pixel.  The destination image similarly contains an even
* number of bands with the same interpretation and with contents
* defined by:
*
* <pre>
* dst[x][y][2*k]   =  src[x][y][2*k];
* dst[x][y][2*k+1] = -src[x][y][2*k+1];
* </pre>
*
* where the index <i>k</i> varies from zero to one less than the number
* of complex components in the destination image.
*
* <p> "Conjugate" defines a PropertyGenerator that sets the "COMPLEX"
* property of the image to <code>java.lang.Boolean.TRUE</code>, which may
* be retrieved by calling the <code>getProperty()</code> method with
* "COMPLEX" as the property name.
*
* <p><table border=1>
* <caption>Resource List</caption>
* <tr><th>Name</th>        <th>Value</th></tr>
* <tr><td>GlobalName</td>  <td>Conjugate</td></tr>
* <tr><td>LocalName</td>   <td>Conjugate</td></tr>
* <tr><td>Vendor</td>      <td>com.sun.media.jai</td></tr>
* <tr><td>Description</td> <td>Computes the complex conjugate of a complex image.</td></tr>
* <tr><td>DocURL</td>      <td>http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/operator/ConjugateDescriptor.html</td></tr>
* <tr><td>Version</td>     <td>1.0</td></tr>
* </table></p>
*
* <p> No parameters are needed for the "Conjugate" operation.
*
* @see javax.media.jai.OperationDescriptor
*/
public class ConjugateDescriptor extends OperationDescriptorImpl {

    /**
     * The resource strings that provide the general documentation
     * and specify the parameter list for this operation.
     */
    private static final String[][] resources = {
        {"GlobalName""Conjugate"},
        {"LocalName",   "Conjugate"},
        {"Vendor",      "com.sun.media.jai"},
        {"Description", JaiI18N.getString("ConjugateDescriptor0")},
        {"DocURL",      "http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/operator/ConjugateDescriptor.html"},
        {"Version",     JaiI18N.getString("DescriptorVersion")}
    };

    private static final String[] supportedModes = {
  "rendered",
  "renderable"
    };

    /** Constructor. */
    public ConjugateDescriptor() {
        super(resources, supportedModes, 1, null, null, null, null);
    }

    /**
     * Returns an array of <code>PropertyGenerators</code> implementing
     * property inheritance for the "Conjugate" operation.
     *
     * @return  An array of property generators.
     */
    public PropertyGenerator[] getPropertyGenerators(String modeName) {
        PropertyGenerator[] pg = new PropertyGenerator[1];
        pg[0] = new ComplexPropertyGenerator();
        return pg;
    }

    /**
     * Validates the input sources.
     *
     * <p> In addition to the standard checks performed by the
     * superclass method, this method checks that the source image
     * has an even number of bands.
     */
    protected boolean validateSources(String modeName,
              ParameterBlock args,
                                      StringBuffer msg) {
        if (!super.validateSources(modeName, args, msg)) {
            return false;
        }

  if (!modeName.equalsIgnoreCase("rendered"))
      return true;

        RenderedImage src = args.getRenderedSource(0);

        if (src.getSampleModel().getNumBands() % 2 != 0) {
            msg.append(getName() + " " +
                       JaiI18N.getString("ConjugateDescriptor1"));
            return false;
        }

        return true;
    }


    /**
     * Computes the complex conjugate of a complex image.
     *
     * <p>Creates a <code>ParameterBlockJAI</code> from all
     * supplied arguments except <code>hints</code> and invokes
     * {@link JAI#create(String,ParameterBlock,RenderingHints)}.
     *
     * @see JAI
     * @see ParameterBlockJAI
     * @see RenderedOp
     *
     * @param source0 <code>RenderedImage</code> source 0.
     * @param hints The <code>RenderingHints</code> to use.
     * May be <code>null</code>.
     * @return The <code>RenderedOp</code> destination.
     * @throws IllegalArgumentException if <code>source0</code> is <code>null</code>.
     */
    public static RenderedOp create(RenderedImage source0,
                                    RenderingHints hints)  {
        ParameterBlockJAI pb =
            new ParameterBlockJAI("Conjugate",
                                  RenderedRegistryMode.MODE_NAME);

        pb.setSource("source0", source0);

        return JAI.create("Conjugate", pb, hints);
    }

    /**
     * Computes the complex conjugate of a complex image.
     *
     * <p>Creates a <code>ParameterBlockJAI</code> from all
     * supplied arguments except <code>hints</code> and invokes
     * {@link JAI#createRenderable(String,ParameterBlock,RenderingHints)}.
     *
     * @see JAI
     * @see ParameterBlockJAI
     * @see RenderableOp
     *
     * @param source0 <code>RenderableImage</code> source 0.
     * @param hints The <code>RenderingHints</code> to use.
     * May be <code>null</code>.
     * @return The <code>RenderableOp</code> destination.
     * @throws IllegalArgumentException if <code>source0</code> is <code>null</code>.
     */
    public static RenderableOp createRenderable(RenderableImage source0,
                                                RenderingHints hints)  {
        ParameterBlockJAI pb =
            new ParameterBlockJAI("Conjugate",
                                  RenderableRegistryMode.MODE_NAME);

        pb.setSource("source0", source0);

        return JAI.createRenderable("Conjugate", pb, hints);
    }
}
TOP

Related Classes of javax.media.jai.operator.ConjugateDescriptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.