Package com.alibaba.security.simpleimage.analyze.sift.scala

Examples of com.alibaba.security.simpleimage.analyze.sift.scala.OctavePyramid


        if (preprocSigma > 0.0) {
            GaussianConvolution gaussianPre = new GaussianConvolution(preprocSigma);
            img = gaussianPre.convolve(img);
        }

        pyr = new OctavePyramid();
        pyr.setVerbose(verbose);
        pyr.buildOctaves(img, startScale, scaleSpaceLevels, octaveSigma, minimumRequiredPixelsize);

        globalKeypoints = new ArrayList<KeyPoint>();
View Full Code Here

TOP

Related Classes of com.alibaba.security.simpleimage.analyze.sift.scala.OctavePyramid

Copyright © 2018 www.massapicom. 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.