Examples of GaborDescriptor


Examples of JDescriptors.fr.lip6.texture.GaborDescriptor

        System.out.println("normalizing "+s);
        ArrayList<Descriptor> list = DescriptorReader.readFile(inDir+"/"+s);
       
        for(Descriptor d : list)
        {
          GaborDescriptor gd = (GaborDescriptor)d;
          double D[] = gd.getD();
         
          for(int i = 0 ; i < D.length; i++)
          {
            D[i] -= meanDesc[i];
            D[i] /= meanSquareDesc[i];
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.