/* JAI-Ext - OpenSource Java Advanced Image Extensions Library * http://www.geo-solutions.it/ * Copyright 2014 GeoSolutions * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package it.geosolutions.jaiext.border; import it.geosolutions.jaiext.JAIExt; import it.geosolutions.jaiext.range.Range; import it.geosolutions.jaiext.range.RangeFactory; import it.geosolutions.jaiext.testclasses.TestBase; import java.awt.image.DataBuffer; import java.awt.image.RenderedImage; import javax.media.jai.BorderExtender; import javax.media.jai.JAI; import javax.media.jai.PlanarImage; import javax.media.jai.RenderedOp; import org.junit.BeforeClass; import org.junit.Test; /** * This test class is used for compare the timing between the new and the old versions of the Border operator . If the user wants to change the number * of the benchmark cycles or of the not benchmark cycles, should only pass the new values to the JAI.Ext.BenchmarkCycles or * JAI.Ext.NotBenchmarkCycles parameters. The selection of the old or new descriptor must be done by setting to true or false the JVM parameter * JAI.Ext.OldDescriptor. No Data Range can be used by simply setting to true the JAI.Ext.RangeUsed JVM parameter. For selecting which BorderExtender * to use the user must set a value from 0 to 3 to the JVM Integer parameter JAI.Ext.BorderType. */ public class ComparisonTest extends TestBase { /** Number of benchmark iterations (Default 1) */ private final static Integer BENCHMARK_ITERATION = Integer.getInteger( "JAI.Ext.BenchmarkCycles", 1); /** Number of not benchmark iterations (Default 0) */ private final static int NOT_BENCHMARK_ITERATION = Integer.getInteger( "JAI.Ext.NotBenchmarkCycles", 0); /** Boolean indicating if the old descriptor must be used */ private final static boolean OLD_DESCRIPTOR = Boolean.getBoolean("JAI.Ext.OldDescriptor"); /** Boolean indicating if a No Data Range must be used */ private final static boolean RANGE_USED = Boolean.getBoolean("JAI.Ext.RangeUsed"); /** Number associated with the type of BorderExtender to use*/ private static final int BORDER_TYPE = Integer.getInteger("JAI.Ext.BorderType", 0); /** Image to elaborate */ private static RenderedImage image; /** Left padding parameter */ private static int leftPad; /** Right padding parameter */ private static int rightPad; /** Top padding parameter */ private static int topPad; /** Bottom padding parameter */ private static int bottomPad; /** No Data Range parameter */ private static Range range; /** BorderExtender used*/ private static BorderExtender extender; /** Output value for No Data*/ private static double destNoData; @BeforeClass public static void initialSetup() { // Setting of the image filler parameter to true for a better image creation IMAGE_FILLER = true; // Images initialization byte noDataB = 100; short noDataUS = 100; short noDataS = 100; int noDataI = 100; float noDataF = 100; double noDataD = 100; // Image creation switch (TEST_SELECTOR) { case DataBuffer.TYPE_BYTE: image = createTestImage(DataBuffer.TYPE_BYTE, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataB, false); break; case DataBuffer.TYPE_USHORT: image = createTestImage(DataBuffer.TYPE_USHORT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataUS, false); break; case DataBuffer.TYPE_SHORT: image = createTestImage(DataBuffer.TYPE_SHORT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataS, false); break; case DataBuffer.TYPE_INT: image = createTestImage(DataBuffer.TYPE_INT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataI, false); break; case DataBuffer.TYPE_FLOAT: image = createTestImage(DataBuffer.TYPE_FLOAT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataF, false); break; case DataBuffer.TYPE_DOUBLE: image = createTestImage(DataBuffer.TYPE_DOUBLE, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataD, false); break; default: throw new IllegalArgumentException("Wrong data type"); } // Image filler must be reset IMAGE_FILLER = false; // Range creation if selected if (RANGE_USED && !OLD_DESCRIPTOR) { switch (TEST_SELECTOR) { case DataBuffer.TYPE_BYTE: range = RangeFactory.create(noDataB, true, noDataB, true); break; case DataBuffer.TYPE_USHORT: range = RangeFactory.createU(noDataUS, true, noDataUS, true); break; case DataBuffer.TYPE_SHORT: range = RangeFactory.create(noDataS, true, noDataS, true); break; case DataBuffer.TYPE_INT: range = RangeFactory.create(noDataI, true, noDataI, true); break; case DataBuffer.TYPE_FLOAT: range = RangeFactory.create(noDataF, true, noDataF, true, true); break; case DataBuffer.TYPE_DOUBLE: range = RangeFactory.create(noDataD, true, noDataD, true, true); break; default: throw new IllegalArgumentException("Wrong data type"); } } // Border dimensions setting leftPad = 2; rightPad = 2; topPad = 2; bottomPad = 2; // Border Extender used if (BORDER_TYPE <= 3) { extender = BorderExtender.createInstance(BORDER_TYPE); } else { // Default BorderExtender extender = BorderExtender.createInstance(BorderExtender.BORDER_ZERO); } // destination No Data destNoData = 100d; } @Test public void testBorder() { // Image dataType int dataType = TEST_SELECTOR; // Descriptor string definition String description = "Border"; if (OLD_DESCRIPTOR) { description = "Old " + description; } else { description = "New " + description; } // Data type string String dataTypeString = ""; switch (dataType) { case DataBuffer.TYPE_BYTE: dataTypeString += "Byte"; break; case DataBuffer.TYPE_USHORT: dataTypeString += "UShort"; break; case DataBuffer.TYPE_SHORT: dataTypeString += "Short"; break; case DataBuffer.TYPE_INT: dataTypeString += "Integer"; break; case DataBuffer.TYPE_FLOAT: dataTypeString += "Float"; break; case DataBuffer.TYPE_DOUBLE: dataTypeString += "Double"; break; default: throw new IllegalArgumentException("Wrong data type"); } // Total cycles number int totalCycles = BENCHMARK_ITERATION + NOT_BENCHMARK_ITERATION; // Image PlanarImage imageBorder = null; long mean = 0; long max = Long.MIN_VALUE; long min = Long.MAX_VALUE; // Cycle for calculating the mean, maximum and minimum calculation time for (int i = 0; i < totalCycles; i++) { // creation of the image if (OLD_DESCRIPTOR) { JAIExt.registerJAIDescriptor("Border"); imageBorder = javax.media.jai.operator.BorderDescriptor.create(image, leftPad, rightPad, topPad, bottomPad, extender, null); } else { imageBorder = BorderDescriptor.create(image, leftPad, rightPad, topPad, bottomPad, extender, range, destNoData, null); } // Total calculation time long start = System.nanoTime(); imageBorder.getTiles(); long end = System.nanoTime() - start; // If the the first NOT_BENCHMARK_ITERATION cycles has been done, then the mean, maximum and minimum values are stored if (i > NOT_BENCHMARK_ITERATION - 1) { if (i == NOT_BENCHMARK_ITERATION) { mean = end; } else { mean = mean + end; } if (end > max) { max = end; } if (end < min) { min = end; } } // For every cycle the cache is flushed such that all the tiles must be recalculates JAI.getDefaultInstance().getTileCache().flush(); } // Mean values double meanValue = mean / BENCHMARK_ITERATION * 1E-6; // Max and Min values stored as double double maxD = max * 1E-6; double minD = min * 1E-6; System.out.println(dataTypeString); // Comparison between the mean times // Output print of the System.out.println("\nMean value for " + description + "Descriptor : " + meanValue + " msec."); System.out.println("Maximum value for " + description + "Descriptor : " + maxD + " msec."); System.out.println("Minimum value for " + description + "Descriptor : " + minD + " msec."); // Final Image disposal if (imageBorder instanceof RenderedOp) { ((RenderedOp) imageBorder).dispose(); } } }