#include #include #include <..._aruco生成">
当前位置:   article > 正文

生成aruco码方法_aruco生成

aruco生成

有两种方法得到想要的aruco码:

1、直接通过网址得到

      http://chev.me/arucogen/(不过只有四个格式)
      网页截图为:
                在这里插入图片描述

2、通过运行C++代码得到

      利用C++生成aruco码,代码如下(需要先在vs上配置好opencv环境,参考:VS配置OpenCV教程(超详细)):

#include <iostream>  
#include <opencv2/core/core.hpp>  
#include<opencv2/highgui/highgui.hpp>  
#include <opencv2/aruco/charuco.hpp>
#include "opencv2/imgproc.hpp"

using namespace cv;
using namespace std;

void gengerate_aruco_code()
{

	// to gengerate a new maker
	cv::Mat markerImage;//创建存储marker的Mat对象
	cv::Ptr<cv::aruco::Dictionary> mdictionary = cv::aruco::getPredefinedDictionary(cv::aruco::DICT_6X6_250);
	cv::aruco::drawMarker(mdictionary, 11, 500, markerImage, 1);//生成marker ID:11  大小500x500像素  存放至Mat对象

	imshow("test", markerImage);//显示marker
	waitKey();
	imwrite("aruco_marker.jpg", markerImage);
}


int main()
{
	gengerate_aruco_code();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

                在这里插入图片描述
      检测aruco码的相关代码,参见:https://blog.csdn.net/zhou4411781/article/details/103262675

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/609601
推荐阅读