Examples of SIFTDescriptor


Examples of JDescriptors.fr.lip6.sift.SIFTDescriptor

      for(int j = 0; j < dimension ; j++)
      {
        point[j] = Float.parseFloat(bodyTokens.nextToken());
      }

      SIFTDescriptor sift = new SIFTDescriptor();
      sift.setD(point);
      sift.setXmin((int) (x-s));
      sift.setXmax((int) (x+s));
      sift.setYmin((int) (y-s));
      sift.setYmax((int) (y+s));
      sift.setShape("CIRCLE");
      list.add(sift);
    }


    iStream.close();
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.