medianimage.java

来自「JAVA 实现虹膜识别(完整)」· Java 代码 · 共 39 行

JAVA
39
字号
package IrisRecog;

/**
 * MedianImage.java
 *  
 * Subclasses the unwrapped image class to provided one more method of 
 * functionality to retrieve pixel intensities.
 *
 * @owner Michael Huffman
 * @author Team 6: A. Bare, I. Chaugule,M. Huffman, M. Pearson, C. Schell
 * @version 0.0.1
 *
 * 	CSC 480 Section 2
 * 	Fall 2005
 * 	10/10/05
 *
 * Edit History:
 *	10/10/05 - created
 */
 
import java.awt.*;
import java.awt.image.*;
import javax.swing.*;
import java.io.*;

public class MedianImage extends UnwrappedImage implements Serializable
{	
	/**
	 * Constructor creates a median image with the specified width and 
	 * height by calling the unwrapped image parent constructor.
	 *
	 * @param w The width of the image
	 * @param h The height of the image
	 */
	public MedianImage(int w, int h)
	{
		super(w, h);
	}
}

⌨️ 快捷键说明

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