zoukankan      html  css  js  c++  java
  • opencv--ORB::create

    static Ptr<ORB> cv::ORB::create (
                            int nfeatures = 500,
                             float scaleFactor = 1.2f,
                            int nlevels = 8,
                            int edgeThreshold = 31,
                            int firstLevel = 0,
                             int WTA_K = 2,
                             int scoreType = ORB::HARRIS_SCORE,
                             int patchSize = 31,
                             int fastThreshold = 20
                         ) 
    nfeatures:表示取的特征点数量
    float scaleFactor = 1.2f   :表示每一层与上一层的比例关系
    int nlevels = 8,:图像金字塔的层数
    edgeThreshold = 31,默认吧,看不懂解释
    firstLevel = 0,  默认吧,看不懂解释
    int WTA_K = 2, 表示描述符随机数的范围,2表示描述符的数字随机取0,1。3表示随机取0,1,2。一般都是2
    scoreType = ORB::HARRIS_SCORE,这表示用harris特征来给定分数。一般默认用这个。
    patchSize = 31,默认吧,看不懂解释

    fastThreshold = 20默认吧,看不懂解释

    英文详解:

    https://docs.opencv.org/3.2.0/db/d95/classcv_1_1ORB.html#adc371099dc902a9674bd98936e79739c

  • 相关阅读:
    HYSBZ 1797 Mincut 最小割
    CodeForces 820B + 821C
    Codeforces 817+818(A~C)
    codeforces 816B Karen and Coffee (差分思想)
    840. Magic Squares In Grid ——weekly contest 86
    Linux 环境下 C++ 的开发编译
    838. Push Dominoes —— weekly contest 85
    836. Rectangle Overlap ——weekly contest 85
    六度空间
    835. Image Overlap —— weekly contest 84
  • 原文地址:https://www.cnblogs.com/wxkang/p/9905707.html
Copyright © 2011-2022 走看看