/* 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.bandmerge; import java.awt.image.DataBuffer; import java.awt.image.RenderedImage; import java.util.Vector; import javax.media.jai.JAI; import javax.media.jai.ParameterBlockJAI; import javax.media.jai.PlanarImage; import javax.media.jai.RenderedOp; import javax.media.jai.TiledImage; import org.junit.BeforeClass; import org.junit.Test; import it.geosolutions.jaiext.JAIExt; import it.geosolutions.jaiext.range.Range; import it.geosolutions.jaiext.range.RangeFactory; import it.geosolutions.jaiext.testclasses.TestBase; /** * This test class is used for compare the timing between the new BandMerge operation and the its old Jai version. NoData range can be used by setting * to true the JAI.Ext.RangeUsed JVM boolean parameters. 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.If the user want to use the Jai * BandMerge operation must pass to the JVM the JAI.Ext.OldDescriptor parameter set to true. For selecting a specific data type the user must set the * JAI.Ext.TestSelector JVM integer parameter to a number between 0 and 5 (where 0 means byte, 1 Ushort, 2 Short, 3 Integer, 4 Float and 5 Double). * The test is made on a group of 4 images. */ 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"); /** Final image band number */ private static final int BAND_NUMBER = 4; /** Source test image */ private static RenderedImage[] testImage; /** No Data Range for Byte */ private static Range[] rangeND; /** Destination No Data value */ private static double destNoData; // Initial static method for preparing all the test data @BeforeClass public static void initialSetup() { // Setting of the image filler parameter to true for a better image creation IMAGE_FILLER = true; // Images initialization values byte noDataB = 100; short noDataUS = 100; short noDataS = 100; int noDataI = 100; float noDataF = 100; double noDataD = 100; RenderedImage image; testImage = new RenderedImage[BAND_NUMBER]; // Image creations switch (TEST_SELECTOR) { case DataBuffer.TYPE_BYTE: image = createTestImage(DataBuffer.TYPE_BYTE, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataB, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; case DataBuffer.TYPE_USHORT: image = createTestImage(DataBuffer.TYPE_USHORT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataUS, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; case DataBuffer.TYPE_SHORT: image = createTestImage(DataBuffer.TYPE_SHORT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataS, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; case DataBuffer.TYPE_INT: image = createTestImage(DataBuffer.TYPE_INT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataI, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; case DataBuffer.TYPE_FLOAT: image = createTestImage(DataBuffer.TYPE_FLOAT, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataF, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; case DataBuffer.TYPE_DOUBLE: image = createTestImage(DataBuffer.TYPE_DOUBLE, DEFAULT_WIDTH, DEFAULT_HEIGHT, noDataD, false, 1); for (int i = 0; i < BAND_NUMBER; i++) { testImage[i] = image; } break; default: throw new IllegalArgumentException("Wrong data type"); } // Image filler must be reset IMAGE_FILLER = false; // Range creation if selected if (RANGE_USED) { switch (TEST_SELECTOR) { case DataBuffer.TYPE_BYTE: rangeND = new Range[] { RangeFactory.create(noDataB, true, noDataB, true) }; break; case DataBuffer.TYPE_USHORT: rangeND = new Range[] { RangeFactory.createU(noDataUS, true, noDataUS, true) }; break; case DataBuffer.TYPE_SHORT: rangeND = new Range[] { RangeFactory.create(noDataS, true, noDataS, true) }; break; case DataBuffer.TYPE_INT: rangeND = new Range[] { RangeFactory.create(noDataI, true, noDataI, true) }; break; case DataBuffer.TYPE_FLOAT: rangeND = new Range[] { RangeFactory.create(noDataF, true, noDataF, true, true) }; break; case DataBuffer.TYPE_DOUBLE: rangeND = new Range[] { RangeFactory.create(noDataD, true, noDataD, true, true) }; break; default: throw new IllegalArgumentException("Wrong data type"); } } // Destination No Data destNoData = 50d; } // General method for showing calculation time of the 2 ZonalStats operators @Test public void testBandMergeDescriptor() { // Image data types int dataType = TEST_SELECTOR; // Descriptor string String description = "\n "; // String for final output String stat = "BandMerge"; if (OLD_DESCRIPTOR) { description = "Old " + stat; } else { description = "New " + stat; } // 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; // PlanarImage PlanarImage imageMerged = null; // Initialization of the statistics long mean = 0; long max = Long.MIN_VALUE; long min = Long.MAX_VALUE; // Vector of sources (used for Old BandMerge operation) Vector vec = new Vector(testImage.length); for (RenderedImage img : testImage) { vec.add(img); } ParameterBlockJAI pbj = new ParameterBlockJAI("bandmerge"); pbj.setSources(vec); // Cycle for calculating the mean, maximum and minimum calculation time for (int i = 0; i < totalCycles; i++) { // creation of the image with the selected descriptor if (OLD_DESCRIPTOR) { JAIExt.registerJAIDescriptor("bandmerge"); // Old descriptor calculations imageMerged = JAI.create("bandmerge", pbj, null); } else { // New descriptor calculations imageMerged = BandMergeDescriptor.create(rangeND, destNoData, false, null, testImage); } // Total statistic calculation time long start; long end; start = System.nanoTime(); imageMerged.getTiles(); 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 recalculated 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; // Comparison between the mean times System.out.println(dataTypeString); // Output print 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 (imageMerged instanceof RenderedOp) { ((RenderedOp) imageMerged).dispose(); } for (int band = 0; band < BAND_NUMBER; band++) { ((TiledImage) testImage[band]).dispose(); } } }