/* * Encog(tm) Core v2.5 - Java Version * http://www.heatonresearch.com/encog/ * http://code.google.com/p/encog-java/ * Copyright 2008-2010 Heaton Research, Inc. * * 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. * * For more information on Heaton Research copyrights, licenses * and trademarks visit: * http://www.heatonresearch.com/copyright */ package org.encog.neural.data.image; import org.encog.neural.NeuralNetworkError; import org.encog.neural.data.NeuralData; import org.encog.neural.data.NeuralDataPair; import org.encog.neural.data.basic.BasicNeuralDataSet; import org.encog.util.downsample.Downsample; /** * Store a collection of images for training with a neural network. This class * collects and then downsamples images for use with a neural network. This is a * memory based class, so large datasets can run out of memory. * * @author jheaton */ public class ImageNeuralDataSet extends BasicNeuralDataSet { /** * The serial id. */ private static final long serialVersionUID = 3368190842312829906L; /** * Error message to inform the caller that only ImageNeuralData objects can * be used with this collection. */ public static final String MUST_USE_IMAGE = "This data set only supports ImageNeuralData or Image objects."; /** * The downsampler to use. */ private final Downsample downsampler; /** * The height to downsample to. */ private int height; /** * The width to downsample to. */ private int width; /** * Should the bounds be found and cropped. */ private final boolean findBounds; /** * The high value to normalize to. */ private final double hi; /** * The low value to normalize to. */ private final double lo; /** * Construct this class with the specified downsampler. * * @param downsampler * The downsampler to use. * @param findBounds * Should the bounds be found and clipped. * @param hi * The high value to normalize to. * @param lo * The low value to normalize to. */ public ImageNeuralDataSet(final Downsample downsampler, final boolean findBounds, final double hi, final double lo) { this.downsampler = downsampler; this.findBounds = findBounds; this.height = -1; this.width = -1; this.hi = hi; this.lo = lo; } /** * Add the specified data, must be an ImageNeuralData class. * * @param data * The data The object to add. */ @Override public void add(final NeuralData data) { if (!(data instanceof ImageNeuralData)) { throw new NeuralNetworkError(ImageNeuralDataSet.MUST_USE_IMAGE); } super.add(data); } /** * Add the specified input and ideal object to the collection. * * @param inputData * The image to train with. * @param idealData * The expected otuput form this image. */ @Override public void add(final NeuralData inputData, final NeuralData idealData) { if (!(inputData instanceof ImageNeuralData)) { throw new NeuralNetworkError(ImageNeuralDataSet.MUST_USE_IMAGE); } super.add(inputData, idealData); } /** * Add input and expected output. This is used for supervised training. * * @param inputData * The input data to train on. */ @Override public void add(final NeuralDataPair inputData) { if (!(inputData.getInput() instanceof ImageNeuralData)) { throw new NeuralNetworkError(ImageNeuralDataSet.MUST_USE_IMAGE); } super.add(inputData); } /** * Downsample all images and generate training data. * * @param height * The height to downsample to. * @param width * the width to downsample to. */ public void downsample(final int height, final int width) { this.height = height; this.width = width; for (final NeuralDataPair pair : this) { if (!(pair.getInput() instanceof ImageNeuralData)) { throw new NeuralNetworkError( "Invalid class type found in ImageNeuralDataSet, only " + "ImageNeuralData items are allowed."); } final ImageNeuralData input = (ImageNeuralData) pair.getInput(); input.downsample(this.downsampler, this.findBounds, height, width, this.hi, this.lo); } } /** * @return the height */ public int getHeight() { return this.height; } /** * @return the width */ public int getWidth() { return this.width; } }