Package jaitools.imageutils

Examples of jaitools.imageutils.ROIGeometry


               
                at.setToTranslation(-0.5, -0.5);
                simplifiedGeometry.apply(at);
               
                // build a shape using a fast point in polygon wrapper
                ROI roi = new ROIGeometry(simplifiedGeometry, false);

                // run the stats via JAI
                Statistic[] reqStatsArr = new Statistic[] { Statistic.MAX, Statistic.MIN,
                        Statistic.RANGE, Statistic.MEAN, Statistic.SDEV, Statistic.SUM };
                final ZonalStatsOpImage zsOp = new ZonalStatsOpImage(cropped.getRenderedImage(),
View Full Code Here


      // just make it slower to determine the point in polygon relationship
      Geometry simplifiedGeometry = DouglasPeuckerSimplifier.simplify(
              rasterSpaceGeometry, 1);
 
      // build a shape using a fast point in polygon wrapper
    return new ROIGeometry(simplifiedGeometry);
  }
View Full Code Here

TOP

Related Classes of jaitools.imageutils.ROIGeometry

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.