完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
1 AprilTags介绍
AprilTag官网 1、AprilTags类似与二维码QR codes(Quick Response Code;全称为快速响应矩阵图码) 2、AprilTags可以应用于: 相机标定 目标大小估计 测量相机到目标的距离 3D 定位(3D positioning) 机器人 SLAM 自主导航(autonomous navigation) 如下图是一个AprilTag Tag36h11的一张图: 我们在相机标定的时候,还会用到很多AprilTags在一起组成的标定板,如下图(图片来源): 3、AprilTag family默认的是:Tag36h11,在AprilTags中有六个系列families: Tag36h11 TagStandard41h12 TagStandard52h13 TagCircle21h7 TagCircle49h12 TagCustom48h12 2 使用python库包apriltag对AprilTag进行检测 2.1 python模块apriltag的安装 pypi下载安装apriltag库包 pip install apriltag 2.2 python模块apriltag的测试用例 测试用例 import apriltag import cv2 img = cv2.imread(‘apriltag_foto.jpg’.cv2.IMREAD_GRAYSCALE) detector = apriltag.Detector() result = detector.detect(img) 返回结果如下: [DetectionBase(tag_family=‘tag36h11’, tag_id=2, hamming=0, goodness=0.0, decision_margin=98.58241271972656, homography=array([[ -1.41302664e-01, 1.08428082e+00, 1.67512900e+01], [ -8.75899366e-01, 1.50245469e-01, 1.70532040e+00], [ -4.89183533e-04, 2.12210247e-03, 6.02052342e-02]]), center=array([ 278.23643912, 28.32511859]), corners=array([[ 269.8939209 , 41.50381088], [ 269.57183838, 11.79248142], [ 286.1383667 , 15.84242821], [ 286.18066406, 43.48323059]])), DetectionBase(tag_family=‘tag36h11’, 。.. etc 结果中是用collections.OrderedDict存储成字典类型的数据 3 AprilTags二维码检测,以及绘制检测框 1、代码 import cv2 import apriltag image = cv2.imread(‘apriltags_36h11.png’) gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) # 定义AprilTag检测选项,然后检测AprilTags print(f“[INFO] detection AprilTags 。..”) options = apriltag.DetectorOptions(families=“tag36h11”) detector = apriltag.Detector(options) results = detector.detect(gray) print(results) print(f“[INFO] {len(results)} total AprilTags detected”) for r in results: # extract the bounding box (x, y)-coordinates for the AprilTag # and convert each of the (x, y)-coordinate pairs to integers (ptA, ptB, ptC, ptD) = r.corners ptB = (int(ptB[0]), int(ptB[1])) ptC = (int(ptC[0]), int(ptC[1])) ptD = (int(ptD[0]), int(ptD[1])) ptA = (int(ptA[0]), int(ptA[1])) # 绘制检测到的AprilTag的框 cv2.line(image, ptA, ptB, (0, 255, 0), 2, lineType=cv2.LINE_AA) cv2.line(image, ptB, ptC, (0, 255, 0), 2, lineType=cv2.LINE_AA) cv2.line(image, ptC, ptD, (0, 255, 0), 2, lineType=cv2.LINE_AA) cv2.line(image, ptD, ptA, (0, 255, 0), 2, lineType=cv2.LINE_AA) # 绘制 AprilTag 的中心坐标 (cX, cY) = (int(r.center[0]), int(r.center[1])) cv2.circle(image, (cX, cY), 5, (0, 0, 255), -1) # draw the tag family on the image tagFamily = r.tag_family.decode(“utf-8”) cv2.putText(image, tagFamily, (ptA[0], ptA[1] - 15), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2) print(“[INFO] tag family: {}”.format(tagFamily)) cv2.imshow(“Image”, image) cv2.waitKey(0) 2、检测结果如下图: |
|
|
|
只有小组成员才能发言,加入小组>>
调试STM32H750的FMC总线读写PSRAM遇到的问题求解?
1553 浏览 1 评论
X-NUCLEO-IHM08M1板文档中输出电流为15Arms,15Arms是怎么得出来的呢?
1499 浏览 1 评论
925 浏览 2 评论
STM32F030F4 HSI时钟温度测试过不去是怎么回事?
660 浏览 2 评论
ST25R3916能否对ISO15693的标签芯片进行分区域写密码?
1551 浏览 2 评论
1846浏览 9评论
STM32仿真器是选择ST-LINK还是选择J-LINK?各有什么优势啊?
605浏览 4评论
STM32F0_TIM2输出pwm2后OLED变暗或者系统重启是怎么回事?
503浏览 3评论
505浏览 3评论
stm32cubemx生成mdk-arm v4项目文件无法打开是什么原因导致的?
487浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-8 20:25 , Processed in 0.860165 second(s), Total 79, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号