Android Open Source - CompareImageData_Android C I Constants






From Project

Back to project page CompareImageData_Android.

License

The source code is released under:

GNU General Public License

If you think the Android project CompareImageData_Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.blogspot.techzealous.utils;
/* www.j a v a 2  s .  c  o  m*/
public class CIConstants extends Object {

  private CIConstants() {
    super();
  }
  
  public static final String PREF_IMAGE1 = "img1";
  public static final String PREF_IMAGE2 = "img2";
  public static final String PREF_SAMPLE_RATE1 = "sample1";
  public static final String PREF_SAMPLE_RATE2 = "sample2";
  public static String RESULT_COMPARESIMPLE = "";
  public static String RESULT_COMPARESIMPLEAVG = "";
  public static String RESULT_COMPAREVECTORDIFF = "";
  public static String RESULT_COMPAREVECTORDIFF_AVG = "";
  //max difference value for a cell 10x10 pixels - sqrt (255*255 + 255*255 + 255*255)
  public static final double MAX_DIFF_VALUE = 441.67295593;
}




Java Source Code List

com.blogspot.techzealous.compareimages.CIMainActivity.java
com.blogspot.techzealous.utils.CIComparator.java
com.blogspot.techzealous.utils.CIConstants.java