sift_svm.py 文件源码

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

项目:TFFRCNN 作者: InterVideo 项目源码 文件源码
def _create_histogram(self, image, hist_size, codebook):
        histogram = np.zeros(hist_size)
        descriptors = self.sift.detectAndCompute(image)
        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()
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号