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

📄 lookuptable.java

📁 jpeg2000编解码
💻 JAVA
字号:
/***************************************************************************** * * $Id: LookUpTable.java,v 1.1.1.1 2002/08/02 09:47:04 grosbois Exp $ * * Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650 * $Date $ *****************************************************************************/package icc.lut;import icc .tags.ICCCurveType;/** * Toplevel class for a lut.  All lookup tables must * extend this class. *  * @version	1.0 * @author	Bruce A. Kern */public abstract class LookUpTable {    /** End of line string.             */ protected static final String eol = System.getProperty ("line.separator");    /** The curve data                  */ protected ICCCurveType curve = null;    /** Number of values in created lut */ protected int          dwNumInput  = 0;                    /**     * For subclass usage.     *   @param curve The curve data       *   @param dwNumInput Number of values in created lut     */    protected LookUpTable (                 ICCCurveType curve,                 int dwNumInput                 ) {        this.curve       = curve;        this.dwNumInput  = dwNumInput; }    /* end class LookUpTable */ }

⌨️ 快捷键说明

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