Examples of MemoryCoOccurrenceMatrix


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

    if (channelIndex >= image.getNumChannels())
    {
      throw new IllegalArgumentException("The channel index must be smaller than the number of channels in the image (" + image.getNumChannels() + ").");
    }
    int dim = image.getMaxSample(channelIndex) + 1;
    MemoryCoOccurrenceMatrix matrix = new MemoryCoOccurrenceMatrix(dim);
    initCoOccurrenceMatrix(image, channelIndex, matrix);
    return matrix;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.