jaitools.media.jai.zonalstats.ZonalStatsRIF Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt-all Show documentation
Show all versions of jt-all Show documentation
Provides a single jar containing all JAI-tools modules which you can
use instead of including individual modules in your project. Note:
It does not include the Jiffle scripting language or Jiffle image
operator.
The newest version!
/*
* Copyright 2009-2010 Michael Bedward
*
* This file is part of jai-tools.
*
* jai-tools is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* jai-tools is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with jai-tools. If not, see .
*
*/
package jaitools.media.jai.zonalstats;
import jaitools.numeric.Range;
import jaitools.numeric.Statistic;
import java.awt.RenderingHints;
import java.awt.geom.AffineTransform;
import java.awt.image.ColorModel;
import java.awt.image.DataBuffer;
import java.awt.image.RenderedImage;
import java.awt.image.SampleModel;
import java.awt.image.renderable.ParameterBlock;
import java.awt.image.renderable.RenderedImageFactory;
import java.util.List;
import javax.media.jai.ImageLayout;
import javax.media.jai.ROI;
import javax.media.jai.RasterFactory;
import com.sun.media.jai.opimage.RIFUtil;
import com.sun.media.jai.util.ImageUtil;
/**
* The image factory for the {@link ZonalStatsOpImage} operation.
*
* @author Michael Bedward
* @author Andrea Antonello
* @author Daniele Romagnoli, GeoSolutions S.A.S.
* @since 1.0
* @version $Id: ZonalStatsRIF.java 1383 2011-02-10 11:22:29Z michael.bedward $
*/
public class ZonalStatsRIF implements RenderedImageFactory {
/** Constructor */
public ZonalStatsRIF() {
}
/**
* Create a new instance of ZonalStatsOpImage in the rendered layer.
*
* @param paramBlock specifies the source image, the optional zone image,
* and the following parameters: "stats", "band", "roi", "zoneTransform", "ranges",
* "rangesType", "rangeLocalStats"
*
* @param renderHints optional RenderingHints object
*/
public RenderedImage create(ParameterBlock paramBlock, RenderingHints renderHints) {
RenderedImage dataImage = paramBlock.getRenderedSource(ZonalStatsDescriptor.DATA_IMAGE);
RenderedImage zoneImage = null;
if (paramBlock.getNumSources() == 2) {
zoneImage = paramBlock.getRenderedSource(ZonalStatsDescriptor.ZONE_IMAGE);
}
ImageLayout layout = RIFUtil.getImageLayoutHint(renderHints);
if (layout == null) layout = new ImageLayout();
Statistic[] stats =
(Statistic[]) paramBlock.getObjectParameter(ZonalStatsDescriptor.STATS_ARG);
Integer[] bands = (Integer[]) paramBlock.getObjectParameter(ZonalStatsDescriptor.BAND_ARG);
Object localStats = paramBlock.getObjectParameter(ZonalStatsDescriptor.RANGE_LOCAL_STATS_ARG);
Boolean rangeLocalStats = localStats != null ? (Boolean) localStats : Boolean.FALSE;
Object rng = paramBlock.getObjectParameter(ZonalStatsDescriptor.RANGES_ARG);
List> ranges = rng != null ? (List>) rng : null;
Object noDataRng = paramBlock.getObjectParameter(ZonalStatsDescriptor.NODATA_RANGES_ARG);
List> noDataRanges = noDataRng != null ? (List>) noDataRng : null;
Object rngType = paramBlock.getObjectParameter(ZonalStatsDescriptor.RANGES_TYPE_ARG);
Range.Type rangesType = rngType != null ? (Range.Type) rngType : rng != null ? Range.Type.EXCLUDE : Range.Type.UNDEFINED;
SampleModel sm = layout.getSampleModel(null);
if (sm == null || sm.getNumBands() != stats.length) {
int dataType = dataImage.getSampleModel().getDataType();
if (dataType != DataBuffer.TYPE_FLOAT && dataType != DataBuffer.TYPE_DOUBLE) {
for (Statistic stat : stats) {
if (!stat.supportsIntegralResult()) {
dataType = DataBuffer.TYPE_DOUBLE;
break;
}
}
}
sm = RasterFactory.createComponentSampleModel(
dataImage.getSampleModel(),
dataType,
dataImage.getWidth(), dataImage.getHeight(), stats.length);
layout.setSampleModel(sm);
if (layout.getColorModel(null) != null) {
ColorModel cm = ImageUtil.getCompatibleColorModel(sm, renderHints);
layout.setColorModel(cm);
}
}
ROI roi = (ROI) paramBlock.getObjectParameter(ZonalStatsDescriptor.ROI_ARG);
AffineTransform zoneTransform =
(AffineTransform) paramBlock.getObjectParameter(ZonalStatsDescriptor.ZONE_TRANSFORM_ARG);
return new ZonalStatsOpImage(
dataImage, zoneImage,
renderHints,
layout,
stats,
bands,
roi,
zoneTransform,
ranges,
rangesType,
rangeLocalStats,
noDataRanges
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy