sift_svm.py 文件源码

python
阅读 25 收藏 0 点赞 0 评论 0

项目:TFFRCNN 作者: InterVideo 项目源码 文件源码
def create_histogram(image, hist_size=2048, codebook=[], detectAndCompute=SIFT_create().detectAndCompute):
    histogram = np.zeros(hist_size)
    descriptors = detectAndCompute(image, window_size=None)
    tree = spatial.KDTree(codebook)

    for i in xrange(len(descriptors)):
        histogram[tree.query(descriptors[i])[1]] += 1

    return normalize(histogram[:, np.newaxis], axis=0).ravel()
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号