博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
特征描述(ORB)
阅读量:6672 次
发布时间:2019-06-25

本文共 526 字,大约阅读时间需要 1 分钟。

ORB:一种有效的SIFT或者SURF描述符取代。

ORB 比SURF或者SIFT快,并且比SUFT效果好,它是在低运算能力设备上的一种好的选择。

例子

import numpy as npimport cv2from matplotlib import pyplot as pltimg = cv2.imread('simple.jpg',0)# Initiate STAR detectororb = cv2.ORB()# find the keypoints with ORBkp = orb.detect(img,None)# compute the descriptors with ORBkp, des = orb.compute(img, kp)# draw only keypoints location,not size and orientationimg2 = cv2.drawKeypoints(img,kp,color=(0,255,0), flags=0)plt.imshow(img2),plt.show()

效果图:

807375-20171117164731890-1508233965.png

转载于:https://www.cnblogs.com/rogerjin/p/7852380.html

你可能感兴趣的文章
Coding and Paper Letter(十七)
查看>>
性能下降曲线
查看>>
求一个数的二进制中1的个数
查看>>
古代教育观点纵览
查看>>
Linux 下搭建PHP环境(make方法)太麻烦了
查看>>
《三》kubectl命令行管理工具、YAML配置详解
查看>>
iozone测试文件系统性能
查看>>
Hadoop - HDFS的数据流剖析
查看>>
Win7下部署asp.net程序如果有RDLC报表需要以下配置
查看>>
Jhipster_cn中文翻译组
查看>>
Nagios简介与安装(1)
查看>>
centos 本地yum配置
查看>>
使用Vundle来管理vim的插件
查看>>
我们容易忽略的WebDriver 的一些方法
查看>>
Windows借助脚本实现自动化加域
查看>>
构造函数私有化
查看>>
我的友情链接
查看>>
Linux Shell编程
查看>>
归档与反归档
查看>>
Learning Data Structure_5_图(2)
查看>>