Package com.alibaba.security.simpleimage.analyze.harris

Examples of com.alibaba.security.simpleimage.analyze.harris.HarrisFast.filter()


     *
     * @return
     */
    public List<Corner> detectInterestPoints() {
        HarrisFast hf = new HarrisFast(input, width, height, mIntegralImage);
        hf.filter(sigma, k, spacing);
        return hf.corners;
    }

    /**
     * 特征描述,在已输入的角点上提取surf descriptor
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.