Package net.sourceforge.jiu.color.data

Examples of net.sourceforge.jiu.color.data.MemoryCoOccurrenceFrequencyMatrix


    if (A == null)
    {
      throw new IllegalArgumentException("Matrix argument must be non-null.");
    }
    int dimension = A.getDimension();
    MemoryCoOccurrenceFrequencyMatrix matrix = new MemoryCoOccurrenceFrequencyMatrix(dimension);
    initCoOccurrenceFrequencyMatrix(A, matrix);
    return matrix;
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jiu.color.data.MemoryCoOccurrenceFrequencyMatrix

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.