Package com.alibaba.simpleimage.analyze.harris

Examples of com.alibaba.simpleimage.analyze.harris.HarrisFast


   * 特征检测,使用harris corner detector
   *
   * @return
   */
  public List<Corner> detectInterestPoints() {
    HarrisFast hf = new HarrisFast(input, width, height, mIntegralImage);
    hf.filter(sigma, k, spacing);
    return hf.corners;
  }
View Full Code Here


     * 特征检测,使用harris corner detector
     *
     * @return
     */
    public List<Corner> detectInterestPoints() {
        HarrisFast hf = new HarrisFast(input, width, height, mIntegralImage);
        hf.filter(sigma, k, spacing);
        return hf.corners;
    }
View Full Code Here

TOP

Related Classes of com.alibaba.simpleimage.analyze.harris.HarrisFast

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.