Examples of HoneycombDetector


Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

  public static void main(String[] args) {
   
    ColorVQDescriptorCreator c = ColorVQDescriptorCreator.getInstance();
   
    //honeycomb patches
    HoneycombDetector detector = new HoneycombDetector(12, 12);
    c.setDetector(detector);
   
    int x = 10, y = 6, z = 4;
//    RGBColorQuantizer q =new RGBColorQuantizer(x, y, z);
    IHSColorQuantizer q = new IHSColorQuantizer(x, y, z);
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

   
    ColorVQDescriptorCreator c = ColorVQDescriptorCreator.getInstance();
    //System.out.println(" s = " + s + " ; r = " + s + " ; cut = " + cut);
   
    //Descriptor creator
    HoneycombDetector detector = new HoneycombDetector(s, r);
    c.setDetector(detector);
    IHSColorQuantizer q = new IHSColorQuantizer(I, H, S);
    c.setQuantizer(q);
    c.setNormalize(false);
   
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

    String descOut = args[1];
   
   
    GaborDescriptorCreator creator = new GaborDescriptorCreator();
   
    Detector detector = new HoneycombDetector(6, 9);
    creator.setDetector(detector);
   
    long tim = System.currentTimeMillis();
    ArrayList<GaborDescriptor> listOfDesc = creator.createDescriptors(im);
    System.out.println("time : "+(System.currentTimeMillis()-tim));
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

      System.out.println("low level counting : "+counting);
   
    int i = 0;
    //creation extracteur de gaborettes
    GaborDescriptorCreator creator = new GaborDescriptorCreator();
    Detector detector = new HoneycombDetector(spacing, scaling);
    creator.setDetector(detector);
    creator.setOrientation(orientation);
    creator.setCounting(counting);
   
    //processing all files
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

    }
   
    ColorVQDescriptorCreator c = ColorVQDescriptorCreator.getInstance();
   
    //honeycomb patches
    HoneycombDetector detector = new HoneycombDetector(12, 12);
    c.setDetector(detector);
   
    int x = 8, y = 6, z = 3;
//    RGBColorQuantizer q = new RGBColorQuantizer(x, y, z);
    IHSColorQuantizer q = new IHSColorQuantizer(x, y, z);
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

      System.out.println("low level counting : "+counting);
   
    int i = 0;
    //creation extracteur de gaborettes
    MacroGaborDescriptorCreator creator = new MacroGaborDescriptorCreator();
    Detector detector = new HoneycombDetector(spacing, scaling);
    creator.setDetector(detector);
    creator.setOrientation(orientation);
    creator.setCounting(counting);
   
    //processing all files
View Full Code Here

Examples of JDescriptors.fr.lip6.detector.HoneycombDetector

    double temp = 0;
   
    ColorVQDescriptorCreator c = ColorVQDescriptorCreator.getInstance();
   
    //Descriptor creator
    HoneycombDetector detector = new HoneycombDetector(s, r);
    c.setDetector(detector);
    IHSColorQuantizer q = new IHSColorQuantizer(I, H, S);
    c.setQuantizer(q);
    c.setNormalize(false);
    try{
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.