📄 medianimage.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -