Package com.alibaba.simpleimage.analyze.sift.scale

Examples of com.alibaba.simpleimage.analyze.sift.scale.GaussianArray


                img = img.halved();
                startScale *= 2.0;
            }
        }
        if (preprocSigma > 0.0) {
            GaussianArray gaussianPre = new GaussianArray(preprocSigma);
            img = gaussianPre.convolve(img);
        }

        Pyramid pyr = new Pyramid();
        pyr.buildOctaves(img, startScale, scaleSpaceLevels, octaveSigma, minimumRequiredPixelsize);
       
View Full Code Here

TOP

Related Classes of com.alibaba.simpleimage.analyze.sift.scale.GaussianArray

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.