CSJ2K.Icc.ICCProfiler.initialize C# (CSharp) Метод

initialize() приватный Метод

General utility used by ctors
private initialize ( ) : void
Результат void
        private void initialize()
        {
            tempInt = new DataBlkInt[ncomps];
            tempFloat = new DataBlkFloat[ncomps];

            /* For each component, get the maximum data value, a reference
            * to the pixel data and set up working and temporary DataBlks
            * for both integer and float output.
            */
            for (int i = 0; i < ncomps; ++i)
            {
                tempInt[i] = new DataBlkInt();
                tempFloat[i] = new DataBlkFloat();
            }
        }