OpenCV实现中的SIFT方向

时间:2017-03-08 09:08:48

标签: c++ opencv orientation matching sift

在SIFT的OpenCV实现中,关键点具有以度为单位的(角度)(范围从180到-180),其表示这些关键点的计算方向。由于SIFT使用直方图中的10度分档来指定关键点的主导方向,我们如何获得这个角度范围?这些值不应该是10度的步骤吗?

这是因为直方图平滑吗?

这是为keypoint.angle分配值的代码,你能帮我理解我们是如何得到这个值的吗?

float omax = calcOrientationHist(gauss_pyr[o*(nOctaveLayers+3) + layer],
                                                     Point(c1, r1),
                                                     cvRound(SIFT_ORI_RADIUS * scl_octv),
                                                     SIFT_ORI_SIG_FCTR * scl_octv,
                                                     hist, n);
                    float mag_thr = (float)(omax * SIFT_ORI_PEAK_RATIO);
                    for( int j = 0; j < n; j++ )
                    {
                        int l = j > 0 ? j - 1 : n - 1;
                        int r2 = j < n-1 ? j + 1 : 0;

                        if( hist[j] > hist[l]  &&  hist[j] > hist[r2]  &&  hist[j] >= mag_thr )
                        {
                            float bin = j + 0.5f * (hist[l]-hist[r2]) / (hist[l] - 2*hist[j] + hist[r2]);
                            bin = bin < 0 ? n + bin : bin >= n ? bin - n : bin;
                            kpt.angle = 360.f - (float)((360.f/n) * bin);
                            if(std::abs(kpt.angle - 360.f) < FLT_EPSILON)
                                kpt.angle = 0.f;
                            keypoints.push_back(kpt);
                        }
                    }

1 个答案:

答案 0 :(得分:0)

我认为我找到了问题的答案。

抛物线拟合最接近每个峰的3个直方图值,以插入峰值位置以获得更好的准确度。这就是为什么我们可以获得连续的值范围而不是10步值。

这是我们如何将抛物线拟合到3点的链接: Curve fitting