Descriptors.py 文件源码

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

项目:VLAD 作者: jorjasso 项目源码 文件源码
def describeORB( image):
    #An efficient alternative to SIFT or SURF
    #doc http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_feature2d/py_orb/py_orb.html
    #ORB is basically a fusion of FAST keypoint detector and BRIEF descriptor 
    #with many modifications to enhance the performance
    orb=cv2.ORB_create()
    kp, des=orb.detectAndCompute(image,None)
    return kp,des
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号