< prev index next >

core/JemmyAWTInput/src/org/jemmy/image/awt/AverageDistanceImageComparator.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation. Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package org.jemmy.image;
  27 
  28 
  29 import java.awt.image.BufferedImage;
  30 import org.jemmy.image.pixel.AverageDistanceComparator;
  31 
  32 
  33 /**
  34  * Compares two images calculating average color distance between pixels and
  35  * comparing it to the threshold value. See {@linkplain NaturalImageComparator
  36  * NaturalImageComparator} for color comparison details.
  37  *
  38  * @author KAM
  39  */
  40 public class AverageDistanceImageComparator extends BufferedImageComparator {
  41 
  42     /**
  43      * Creates comparator with the default sensitivity value = 0.02
  44      * (around 5 in 0-255 color component value).
  45      * @see #AverageDistanceImageComparator(double)
  46      */
  47     public AverageDistanceImageComparator() {
  48         this(0.02);
  49     }




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation. Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package org.jemmy.image.awt;
  27 
  28 

  29 import org.jemmy.image.pixel.AverageDistanceComparator;
  30 
  31 
  32 /**
  33  * Compares two images calculating average color distance between pixels and
  34  * comparing it to the threshold value. See {@linkplain NaturalImageComparator
  35  * NaturalImageComparator} for color comparison details.
  36  *
  37  * @author KAM
  38  */
  39 public class AverageDistanceImageComparator extends BufferedImageComparator {
  40 
  41     /**
  42      * Creates comparator with the default sensitivity value = 0.02
  43      * (around 5 in 0-255 color component value).
  44      * @see #AverageDistanceImageComparator(double)
  45      */
  46     public AverageDistanceImageComparator() {
  47         this(0.02);
  48     }


< prev index next >