Examples of detectInterestPoints()


Examples of com.alibaba.simpleimage.analyze.harissurf.HarrisSurf.detectInterestPoints()

                String target = pntDir + f.getName() + ".rsurfn";

                List<SURFInterestPointN> al = null;
                if (bi != null) {
                    HarrisSurf tempalte_hs = new HarrisSurf(bi);
                    tempalte_hs.getDescriptions(tempalte_hs.detectInterestPoints(), true);
                    al = tempalte_hs.getGlobalNaturalInterestPoints();
                }
                if (al == null) al = new ArrayList<SURFInterestPointN>();
                InterestPointNListInfo ipl = new InterestPointNListInfo();
                ipl.setList(al);
View Full Code Here

Examples of com.alibaba.simpleimage.analyze.harissurf.HarrisSurf.detectInterestPoints()

                    e.printStackTrace();
                    continue;
                }

                HarrisSurf hs = new HarrisSurf(image);
                hs.getDescriptions(hs.detectInterestPoints(), false);
                surfPoints = hs.getInterestPoints();
                info = new InterestPointListInfo();
                info.setHeight(image.getHeight());
                info.setWidth(image.getWidth());
                info.setList(surfPoints);
View Full Code Here

Examples of com.alibaba.simpleimage.analyze.harissurf.HarrisSurf.detectInterestPoints()

                String target = pntDir + f.getName() + ".surf";

                List<SURFInterestPoint> al = null;
                if (bi != null) {
                    HarrisSurf tempalte_hs = new HarrisSurf(bi);
                    tempalte_hs.getDescriptions(tempalte_hs.detectInterestPoints(), false);
                    al = tempalte_hs.getInterestPoints();
                }
                if (al == null) al = new ArrayList<SURFInterestPoint>();
                InterestPointListInfo ipl = new InterestPointListInfo();
                ipl.setList(al);
View Full Code Here

Examples of com.alibaba.simpleimage.analyze.harissurf.HarrisSurf.detectInterestPoints()

public class HarrisTest {

    public static void main(String[] args) throws IOException {
        BufferedImage bi = ImageIO.read(new File("/Users/axman/Downloads/logo/img/alipay_logo1.png"));
        HarrisSurf tempalte_hs = new HarrisSurf(bi);
        tempalte_hs.getDescriptions(tempalte_hs.detectInterestPoints(), false);
        List<SURFInterestPoint> al = tempalte_hs.getInterestPoints();

        BufferedImage bi1 = ImageIO.read(new File("/Users/axman/Downloads/logo/img/alipay_logo1.png"));
        long start = System.currentTimeMillis();
View Full Code Here

Examples of com.alibaba.simpleimage.analyze.harissurf.HarrisSurf.detectInterestPoints()

                String target = pntDir + f.getName() + ".rsurf";

                List<SURFInterestPoint> al = null;
                if (bi != null) {
                    HarrisSurf tempalte_hs = new HarrisSurf(bi);
                    tempalte_hs.getDescriptions(tempalte_hs.detectInterestPoints(), true);
                    al = tempalte_hs.getInterestPoints();
                }
                if (al == null) al = new ArrayList<SURFInterestPoint>();
                InterestPointListInfo ipl = new InterestPointListInfo();
                ipl.setList(al);
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.