lookuptable.java
来自「jpeg2000编解码」· Java 代码 · 共 57 行
JAVA
57 行
/***************************************************************************** * * $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 + =
减小字号Ctrl + -
显示快捷键?