Package de.mpi.rgblab.utils.vector

Examples of de.mpi.rgblab.utils.vector.ShortVector


  private void createImageData(int len) {

    // the number of points on the map
    capacity = len;

    x = new ShortVector(len);
    y = new ShortVector(len);
    l = new ByteVector(len);

  }
View Full Code Here


    // the number of points on the map

    MemoryUtil.printMemoryInMB("before initializing measures");
    visibility = new FloatVector(number_points);
    saliency = new ShortVector(number_points);
    // meanVisibility = new UnsignedShortVector(number_points);
    MemoryUtil.printMemoryInMB("after crating vis and saliency vectors");
    System.out.println(y_res);
    System.out.println(x_res);
    integralSum = new float[number_classes + 1][y_res][x_res];
View Full Code Here

TOP

Related Classes of de.mpi.rgblab.utils.vector.ShortVector

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.