⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 globals.java

📁 JAVA 实现虹膜识别(完整)
💻 JAVA
字号:
package IrisRecog;

/**
 * Globals.java
 * 
 * This static abstract class, non-instantiatable, defines the constants used
 * throughout the functions and methods of this application.
 * 
 * @author Team 6: Andy Bare, Imran Chaugule, Michael Huffman, Matt Pearson, Catherine Schell
 * @version 1.0.0
 *
 * 	CSC 480 Section 2
 * 	Fall 2005
 * 	10/1/05
 */
 
import java.awt.*;

public abstract class Globals
{
	/*
	 * The variance (in intensity amount) used in the pupil center detection algorithm.
	 */
    public static int PUPIL_VARIANCE = 17;
    
   	public static double PUPIL_BLOCK_SIZE_PORTION = .80;

   	public static int GUASSIAN_WIDTH = 30;
   	
   	public static int EDGE_THRESHHOLD = 50;
   	
   	public static double CIRCLE_PERCENT_MATCH = .90;
   	
   	public static int MEDIAN_FILTER_WINDOW_SIZE = 8;
   	
   	public static double LOCALIZATION_PERCENTAGE = .80;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -