Package org.geotools.parameter

Examples of org.geotools.parameter.ImagingParameterDescriptors


            }
        }
    }

    public BandMerge() {
        super(new BandMergeDescriptor(), new ImagingParameterDescriptors(
                getOperationDescriptor("BandMergeOp"), REPLACED_DESCRIPTORS));
    }
View Full Code Here


     * must supports the {@code "rendered"} mode (which is the case for most JAI operations).
     *
     * @param operation The JAI operation descriptor.
     */
    public OperationJAI(final OperationDescriptor operation) {
        this(operation, new ImagingParameterDescriptors(operation));
    }
View Full Code Here

   *
   * @param operationDescriptor
   *            {@link OperationDescriptor} for the underlying JAI operation.
   */
  public BaseStatisticsOperationJAI(OperationDescriptor operationDescriptor) {
    super(operationDescriptor, new ImagingParameterDescriptors(
        getOperationDescriptor(operationDescriptor.getName()),
        REPLACED_DESCRIPTORS));
  }
View Full Code Here

   *            default behavior they have inside JAI.
   */
  public BaseStatisticsOperationJAI(
      OperationDescriptor operationDescriptor,
      ImagingParameterDescriptors replacements) {
    super(operationDescriptor, new ImagingParameterDescriptors(
        ImagingParameterDescriptors.properties(operationDescriptor),
        operationDescriptor, RenderedRegistryMode.MODE_NAME,
        ImagingParameterDescriptors.DEFAULT_SOURCE_TYPE_MAP, REPLACED_DESCRIPTORS));
  }
View Full Code Here

    /**
   * Constructor for {@link BaseStatisticsOperationJAI}.
   * @param name of the underlying JAI operation.
   */
  public BaseStatisticsOperationJAI(String name) {
    super(getOperationDescriptor(name),new ImagingParameterDescriptors(
        getOperationDescriptor(name),
        new HashSet<ParameterDescriptor>(REPLACED_DESCRIPTORS)));
  }
View Full Code Here

            return finalGG;
        }
    }

    public Mosaic() {
        super(new MosaicDescriptor(), new ImagingParameterDescriptors(
                getOperationDescriptor("Mosaic"), REPLACED_DESCRIPTORS));
    }
View Full Code Here

TOP

Related Classes of org.geotools.parameter.ImagingParameterDescriptors

Copyright © 2018 www.massapicom. 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.