Examples of quntinize()


Examples of com.alibaba.simpleimage.analyze.search.engine.ImageEngine.quntinize()

        System.out.println("Begin to Search");
        long start = System.currentTimeMillis();
        String featfile = path + "ukbench00001" + ".surf";
        List<SURFInterestPoint> surfPoints = InterestPointInfoReader.readComplete(featfile).getList();

        List<Integer> visualWords = ie.quntinize(surfPoints);
        ie.getCandidate(visualWords);
        // visualWords = visualWords.subList(0, 20);
        List<Score> scoreList = ie.getRankedList(visualWords, ie.getCandidate(visualWords), 20);
        long end = System.currentTimeMillis();
        System.out.println("Time Cost: " + (end - start) + "ms");
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.