当前位置:   article > 正文

AVM环视拼接方法介绍_avm算法

avm算法

1. 简介

关于车辆的全景环视系统网上已经有很多的资料,然而几乎没有可供参考的代码,这一点对入门的新人来说非常不友好。

全景环视系统,又称AVM。在自动驾驶领域,AVM属于自动泊车系统的一部分,是一种实用性极高、可大幅提升用户体验和驾驶安全性的功能。

AVM汽车环视影像系统如图所示,由安装在前保险杠、后备箱、后视镜上的四个外置鱼眼相机构成。

该系统包含的算子按照先后顺序:去畸变、四路鱼眼相机联合标定、投影变换、鸟瞰图微调、拼接融合、3D模型纹理映射等。

下面我们将围绕着算子的先后顺序来对AVM进行介绍。

2. AVM算法分类

先来粗略浏览下AVM算法Pipeline包含那些算子:

2D AVM

3D AVM

3. 镜头去畸变标定

首先我们需要获取每个相机的内参矩阵与畸变系数。以下是视频中四个相机分别拍摄的原始画面,顺序依次为前、后、左、右,并命名为 front.png、back.png、left.png、right.png 。

你可以看到图中地面上铺了一张标定布,这个布的尺寸是 6mx10m,每个黑白方格的尺寸为 40cmx40cm,每个圆形图案所在的方格是 80cmx80cm。我们将利用这个标定物来手动选择对应点获得投影矩阵。

相机去畸变通常使用张正友老师的棋盘格标定方法,首先通过矩阵推导得到一个比较好的初始解,然后通过非线性优化得到最优解,包括相机的内参、外参、畸变系数,然后对鱼眼图像做去畸变处理。内参即:

4. 四路鱼眼联合标定

接下来我们需要获取每个相机到地面的投影矩阵,这个投影矩阵会把相机校正后的画面转换为对地面上某个矩形区域的鸟瞰图。这四个相机的投影矩阵不是独立的,它们必须保证投影后的区域能够正好拼起来。

这一步是通过联合标定实现的,即在车的四周地面上摆放标定物,拍摄图像,手动选取对应点,然后获取投影矩阵。

请看下图:

每个标定板应当恰好位于相邻的两个相机视野的重合区域中。

在上面拍摄的相机画面中车的四周铺了一张标定布,这个具体是标定板还是标定布不重要,只要能清楚的看到特征点就可以了。

然后我们需要设置几个参数:(以下所有参数均以厘米为单位)

  • innerShiftWidth, innerShiftHeight:标定板内侧边缘与车辆左右两侧的距离,标定板内侧边缘与车辆前后方的距离。

  • shiftWidth, shiftHeight:这两个参数决定了在鸟瞰图中向标定板的外侧看多远。这两个值越大,鸟瞰图看的范围就越大,相应地远处的物体被投影后的形变也越严重,所以应酌情选择。

  • totalWidth, totalHeight:这两个参数代表鸟瞰图的总宽高,在这个里我们设置标定布宽 6m 高 10m,于是鸟瞰图中地面的范围为 (600 + 2 * shiftWidth, 1000 + 2 * shiftHeight)。为方便计我们让每个像素对应 1 厘米,于是鸟瞰图的总宽高为:

    totalWidth = 600 + 2 * shiftWidth

    totalHeight = 1000 + 2 * shiftHeight

  • 车辆所在矩形区域的四角 (图中标注的红色圆点),这四个角点的坐标分别为 (xl, yt), (xr, yt), (xl, yb), (xr, yb) (l 表示 left, r 表示 right,t 表示 top,b 表示 bottom)。这个矩形区域相机是看不到的,我们会用一张车辆的图标来覆盖此处。

设置好参数以后,每个相机的投影区域也就确定了,比如前方相机对应的投影区域如下:

5. 投影变换

投影变换的通俗理解就是:假设同一个相机分别在A、B两个不同位置,以不同的位姿拍摄同一个平面(重点是拍摄平面,例如桌面、墙面、地平面),生成了两张图象,这两张图象之间的关系就叫做投影变换。

张正友老师的相机标定法使用的就是从标定板平面到图像平面之间的投影模型。

图中相机从两个不同的角度拍摄同一个X平面,两个相机拍摄到的图像之间的投影变换矩阵H(单应矩阵)为:

其中K为相机内参矩阵,R、T为两个相机之间的外参。这个公式怎么推导的网上有很多,我们只需要知道,这个单应矩阵H内部实际是包含了两个相机之间的位姿关系即可。

这也就解释了:为什么有的AVM pipeline的方法是需要标定相机的外参,然后通过厂家提供的相机安装参数将四路鱼眼全部统一到车身坐标系下,而我们不需要这个过程,只需要用标定布来做联合标定。

其实两种方法内部都是相通的,都绕不开计算相机外参这件事情。

下面就展示了我们使用标定布的过程

然后依次点击事先确定好的四个标志点 (顺序不能错!),得到的效果如下:

这四个点是可以自由设置的,当你在校正图中点击这四个点时,OpenCV 会根据它们在校正图中的像素坐标和在鸟瞰图中的像素坐标的对应关系计算一个射影矩阵。

这里用到的原理就是四点对应确定一个射影变换 (四点对应可以给出八个方程,从而求解出射影矩阵的八个未知量。注意射影矩阵的最后一个分量总是固定为 1)。

6. 鸟瞰图的拼接与平滑

到这一步其实就是最重要的一步了,如何将我们想要的图片进行拼接,并完成图片生成。生成鸟瞰图的过程可以理解为:将鱼眼相机拍摄到的图像,投影到某个在汽车上方平行地面拍摄的相机的平面上去。

这个单应矩阵H具体是多少,由去畸变图中检测到的棋盘格角点坐标和联合标定全景图中棋盘格角点坐标来决定。

如图所示,以后置相机为例,联合标定已知图(2)中框出棋盘格的坐标,图(1)中的棋盘格坐标可通过opencv的函数进行检测,从而建立单应矩阵H的求解模型。

我来逐步介绍它是怎么做到的:

由于相邻相机之间有重叠的区域,所以这部分的融合是关键。如果直接采取两幅图像加权平均 (权重各自为 1/2) 的方式融合的话你会得到类似下面的结果:

你可以看到由于校正和投影的误差,相邻相机在重合区域的投影结果并不能完全吻合,导致拼接的结果出现乱码和重影。这里的关键在于权重系数应该是随像素变化而变化的,并且是随着像素连续变化。

以左上角区域为例,这个区域是 front, left 两个相机视野的重叠区域。我们首先将投影图中的重叠部分取出来:

灰度化并二值化,并用形态学操作去掉 噪点(不必特别精细,大致去掉即可):

至此我们就得到了重叠区域的一个完整 mask。

然后将mask加入到拼接当中,通常的做法是分别以AB、CD为边界,计算白色区域像素点与AB、CD之间的距离,然后计算一个权重,距离CD越近的位置,前俯视图权重越大;距离AB越近的位置,左俯视图权重越大。但会出现边界效应如图所示:

7. C++ 代码展示

main.cpp

  1. #include "birdView.hpp"
  2. int main()
  3. {
  4. Mat v[4];
  5. for (int i = 0; i < 4; i++)
  6. {
  7. char buf[10];
  8. sprintf(buf, "%d.png", i);
  9. v[i] = imread(buf);
  10. }
  11. BirdView b("config.yml");
  12. b.setCarSize(240, 380);
  13. b.setChessSize(60,60);
  14. b.setMaskHeigth(200);
  15. b.setInternalShift(27,27);
  16. //b.sourcePointClick(v);
  17. while (1)
  18. {
  19. imshow("bird view", b.transformView(v));
  20. if (waitKey(20) == 27) break;
  21. }
  22. }

birdView.hpp

  1. #ifndef BIRDVIEW_HPP
  2. #define BIRDVIEW_HPP
  3. #include <opencv2/opencv.hpp>
  4. #include <iostream>
  5. using namespace cv;
  6. using namespace std;
  7. // calculate correspondence point for every input
  8. // 0: left up 1: right up 2:rigth down 3: left down
  9. class BirdView
  10. {
  11. public:
  12. BirdView(const char* configFile = NULL)
  13. {
  14. SourcePoint_OK=ParamSet_OK = false;
  15. maskHeigth = clickCount = camID = 0;
  16. targetPoint.resize(4);
  17. sourcePoint.resize(4);
  18. try
  19. {
  20. carPic = imread("../img/car.jpg",CV_8UC4);
  21. }
  22. catch (...)
  23. {
  24. std::cout <<"[WARNING] Car model view pic not found!\n";
  25. }
  26. for (int i = 0;i < 4; i++)
  27. {
  28. targetPoint[i].resize(4);
  29. sourcePoint[i].resize(4);
  30. }
  31. // check if config file exist.
  32. if (configFile)
  33. {
  34. readConfig(configFile);
  35. }
  36. }
  37. void setInternalShift(int W, int H)
  38. {
  39. ShiftAdjust = Size(W,H);
  40. ParamSet_OK = false;
  41. setParam();
  42. }
  43. void setShift(int W, int H)
  44. {
  45. Shift = Size(W,H);
  46. ParamSet_OK = false;
  47. setParam();
  48. }
  49. void setCarSize(int W,int H)
  50. {
  51. carSize = Size(W, H);
  52. ParamSet_OK = false;
  53. setParam();
  54. }
  55. void setChessSize(int W, int H)
  56. {
  57. chessBordWidth.width = W;
  58. chessBordWidth.height = H;
  59. ParamSet_OK = false;
  60. setParam();
  61. }
  62. void setMaskHeigth(int maskHeigth_)
  63. {
  64. maskHeigth = maskHeigth_;
  65. ParamSet_OK = false;
  66. setParam();
  67. }
  68. Mat transformView(Mat* v)
  69. {
  70. if (!SourcePoint_OK)
  71. {
  72. std::cerr<<"[ERROR] Source Points have not been pointed! please Add function sourcePointClick to get Source Points!\n";
  73. throw "[ERROR] Source Points have not been pointed! please Add function sourcePointClick to get Source Points!\n";
  74. }
  75. if (!ParamSet_OK)
  76. {
  77. setParam();
  78. }
  79. Mat b[4];
  80. Mat m = Mat(mSize, CV_8UC3 );
  81. int seq[4] = { 0,2,1,3 };
  82. for (int i = 0; i < 4; i++)
  83. {
  84. if(!v[seq[i]].data)
  85. {
  86. continue;
  87. }
  88. warpPerspective(v[seq[i]], b[seq[i]], Birdtransform[seq[i]], mSize);
  89. switch (seq[i])
  90. {
  91. case 1:
  92. b[seq[i]](r[seq[i]]).copyTo(m(r[seq[i]]), maskF);
  93. break;
  94. case 3:
  95. b[seq[i]](r[seq[i]]).copyTo(m(r[seq[i]]), maskB);
  96. break;
  97. default:
  98. b[seq[i]](r[seq[i]]).copyTo(m(r[seq[i]]));
  99. break;
  100. }
  101. }
  102. if(carPic.data) carPicTmp.copyTo(m(carPicPos));
  103. //drawing target points
  104. const Scalar color[4] = { Scalar(255,0,0),Scalar(0,255,0), Scalar(255,255,0), Scalar(0,255,255) };
  105. for (int i = 0; i < 16; i++) circle(m, targetPoint[i / 4][i % 4], 5, color[i / 4], 5);
  106. return m;
  107. }
  108. void saveConfig(const char* configFile = "config.yml")
  109. {
  110. for (int i = 0;i < 4; i++)
  111. {
  112. if (sourcePoint[i].empty())
  113. {
  114. std::cout << "[ERROR] sourcePoint has not been comfired all\n"<<std::endl;
  115. return ;
  116. }
  117. }
  118. FileStorage fs(configFile, FileStorage::WRITE);
  119. if (fs.isOpened())
  120. {
  121. for (int i = 0; i < 4; i++)
  122. {
  123. for (int k = 0; k < 4; k++)
  124. {
  125. char buf[20];
  126. sprintf(buf, "sourcePoint%d%d", i, k);
  127. write(fs, buf, sourcePoint[i][k]);
  128. }
  129. }
  130. fs.release();
  131. std::cout << "\n param save complete! \n\n";
  132. }
  133. }
  134. void readConfig(const char* configFile = "config.yml")
  135. {
  136. FileStorage fs(configFile, FileStorage::READ);
  137. if (fs.isOpened())
  138. {
  139. for (int i = 0; i < 4; i++)
  140. {
  141. for (int k = 0; k < 4; k++)
  142. {
  143. char buf[20];
  144. sprintf(buf, "sourcePoint%d%d", i, k);
  145. fs[buf] >> sourcePoint[i][k];
  146. }
  147. }
  148. SourcePoint_OK = true; // source point reading completed
  149. ParamSet_OK = false; // setting parma
  150. setParam();
  151. std::cout << "[WARNING] Config file read sucessfully!\n";
  152. }
  153. else std::cout << "[WARNING] There is not a config file in folder\n";
  154. }
  155. void sourcePointClick(Mat *v)
  156. {
  157. setParam(1);
  158. // click corner-points and record them
  159. printf("cam: %d ,pointID: %d ", camID, clickCount);
  160. const char *windowsName = "Source point set";
  161. namedWindow(windowsName);
  162. setMouseCallback(windowsName,on_MouseHandle, (void*)this);
  163. for(int i=0;i<4;i++)
  164. {
  165. for(int j=0;j<4;j++)
  166. {
  167. sourcePoint[i][j]= Point2f(0,0);
  168. }
  169. }
  170. for (camID = 0, clickCount = 0; camID<4;)
  171. {
  172. for (int i = 0; i < sourcePoint[camID].size(); i++)
  173. {
  174. circle(v[camID], sourcePoint[camID][i], 5, Scalar(255, 0, 0), 2);
  175. }
  176. imshow(windowsName, v[camID]);
  177. if (waitKey(20) == 'j') break;
  178. }
  179. setMouseCallback(windowsName, NULL, NULL);
  180. destroyWindow(windowsName);
  181. saveConfig("config.yml");/*save source's points*/
  182. SourcePoint_OK = true;
  183. }
  184. void sourcePointClick(cv::VideoCapture *v)
  185. {
  186. setParam(1);
  187. Mat ans;
  188. // click corner-points and record them
  189. printf("cam: %d ,pointID: %d ", camID, clickCount);
  190. const char *windowsName = "Source point set";
  191. namedWindow(windowsName);
  192. setMouseCallback(windowsName,on_MouseHandle, (void*)this);
  193. for(int i=0;i<4;i++)
  194. {
  195. sourcePoint[i].clear();
  196. }
  197. for (camID = 0, clickCount = 0; camID<4;)
  198. {
  199. v[camID] >> ans;
  200. for (int i = 0; i < sourcePoint[camID].size(); i++)
  201. {
  202. circle(ans, sourcePoint[camID][i], 5, Scalar(255, 0, 0), 2);
  203. }
  204. imshow(windowsName, ans);
  205. if (waitKey(20) == 'j') break;
  206. }
  207. setMouseCallback(windowsName, NULL, NULL);
  208. destroyWindow(windowsName);
  209. saveConfig("config.yml");/*save source's points*/
  210. SourcePoint_OK = true;
  211. }
  212. static void on_MouseHandle(int e, int x, int y, int flag, void* param)
  213. {
  214. BirdView & birdView = *(BirdView*)param;
  215. int camID = birdView.camID;
  216. switch (e)
  217. {
  218. case EVENT_LBUTTONUP:
  219. {
  220. birdView.sourcePoint[birdView.camID][birdView.clickCount] = Point2f(x, y) ;
  221. printf("x:%d y:%d\n", x, y);
  222. birdView.clickCount++;
  223. if (birdView.clickCount> 3)
  224. {
  225. birdView.clickCount = 0;
  226. birdView.Birdtransform[camID] = getPerspectiveTransform(birdView.sourcePoint[camID], birdView.targetPoint[camID]);
  227. birdView.camID++;
  228. }
  229. if (birdView.camID<3)
  230. {
  231. printf("cam: %d ,pointID: %d ", birdView.camID, birdView.clickCount);
  232. }
  233. else printf("\n");
  234. }
  235. default: break;
  236. }
  237. }
  238. private:
  239. Rect r[4],carPicPos;
  240. int clickCount, camID, maskHeigth;
  241. Mat Birdtransform[4],maskF, maskB, carPic,carPicTmp;
  242. vector<vector<Point2f> > targetPoint, sourcePoint;
  243. Size ShiftAdjust, Shift, chessBordWidth, mSize, carSize;
  244. bool SourcePoint_OK,ParamSet_OK;
  245. void setParam(bool tranformCheck = false)
  246. {
  247. WARMING will show when Transform is running but not all parameters have been set
  248. if (Shift.area()== 0)
  249. {
  250. if (tranformCheck)std::cout << "[WARMING] Shift has not been set! Default value will be used" << std::endl;
  251. Shift.width = Shift.height = 200;
  252. }
  253. if (chessBordWidth.area() == 0)
  254. {
  255. if (tranformCheck)std::cout << "[WARMING] chessBordWidth has not been set! Default value will be used" << std::endl;
  256. chessBordWidth.width = chessBordWidth.height = 60;
  257. }
  258. if (ShiftAdjust.area() == 0)
  259. {
  260. if (tranformCheck)std::cout << "[WARMING] ShiftAdjust has not been set! Default value will be used" << std::endl;
  261. ShiftAdjust.width = 36;
  262. ShiftAdjust.height = 27;
  263. }
  264. if (carSize.area() == 0)
  265. {
  266. if (tranformCheck)std::cout << "[WARMING] carSize has not been set! Default value will be used" << std::endl;
  267. carSize = Size(240, 380);
  268. }
  269. if (maskHeigth >=100 || maskHeigth <=0)
  270. {
  271. if (tranformCheck)std::cout << "[WARMING] maskHeigth has not been set! Default value will be used" << std::endl;
  272. maskHeigth = 200;
  273. }
  274. if (!ParamSet_OK)
  275. {
  276. /*The size of the entire output image*/
  277. mSize = Size(Shift.width * 2 + carSize.width + chessBordWidth.width * 2,
  278. Shift.height * 2 + carSize.height + chessBordWidth.height * 2);
  279. /*make targetPoint, need chessBordWidth,mSize,Shift*/
  280. /*left*/
  281. targetPoint[0][0] = (Point2f(Shift.width + chessBordWidth.width, Shift.height));
  282. targetPoint[0][1] = (Point2f(Shift.width + chessBordWidth.width, mSize.height - Shift.height));
  283. targetPoint[0][2] = (Point2f(Shift.width, mSize.height - Shift.height));
  284. targetPoint[0][3] = (Point2f(Shift.width, Shift.height));
  285. /*forward*/
  286. targetPoint[1][0] = (Point2f(mSize.width - Shift.width, Shift.height + chessBordWidth.height));
  287. targetPoint[1][1] = (Point2f(Shift.width, Shift.height + chessBordWidth.height));
  288. targetPoint[1][2] = (Point2f(Shift.width, Shift.height));
  289. targetPoint[1][3] = (Point2f(mSize.width - Shift.width, Shift.height));
  290. /*backward*/
  291. targetPoint[3][0] = (Point2f(Shift.width, mSize.height - Shift.height - chessBordWidth.height));
  292. targetPoint[3][1] = (Point2f(mSize.width - Shift.width, mSize.height - Shift.height - chessBordWidth.height));
  293. targetPoint[3][2] = (Point2f(mSize.width - Shift.width, mSize.height - Shift.height));
  294. targetPoint[3][3] = (Point2f(Shift.width, mSize.height - Shift.height));
  295. /*right*/
  296. targetPoint[2][0] = (Point2f(mSize.width - Shift.width - chessBordWidth.width, Shift.height));
  297. targetPoint[2][1] = (Point2f(mSize.width - Shift.width - chessBordWidth.width, mSize.height - Shift.height));
  298. targetPoint[2][2] = (Point2f(mSize.width - Shift.width, mSize.height - Shift.height));
  299. targetPoint[2][3] = (Point2f(mSize.width - Shift.width, Shift.height));
  300. //need Shift, chessBordWidth, ShiftAdjust, mSize
  301. /*roi*/
  302. r[0] = Rect(0, 0, Shift.width + chessBordWidth.width + ShiftAdjust.width, mSize.height);
  303. r[1] = Rect(0, 0, mSize.width, Shift.height + chessBordWidth.height + ShiftAdjust.height);
  304. r[2] = Rect(mSize.width - Shift.width - chessBordWidth.width - ShiftAdjust.width, 0, Shift.width + chessBordWidth.width + ShiftAdjust.width, mSize.height);
  305. r[3] = Rect(0, mSize.height - Shift.width - chessBordWidth.width - ShiftAdjust.width, mSize.width, Shift.height + chessBordWidth.height + ShiftAdjust.height);
  306. maskF = Mat(r[1].size(), CV_8UC1, Scalar(1));
  307. maskB = Mat(r[1].size(), CV_8UC1, Scalar(1));
  308. /*make mask, need r */
  309. vector<vector<Point> > maskVec;
  310. /*forward*/
  311. maskVec.push_back(vector<Point>());
  312. maskVec[0].push_back(Point(0, r[1].height));
  313. maskVec[0].push_back(Point(0, r[1].height - maskHeigth));
  314. maskVec[0].push_back(Point(r[0].width, r[1].height));
  315. maskVec.push_back(vector<Point>());
  316. maskVec[1].push_back(Point(r[1].width, r[1].height));
  317. maskVec[1].push_back(Point(r[1].width, r[1].height - maskHeigth));
  318. maskVec[1].push_back(Point(r[1].width - r[2].width, r[1].height));
  319. /*backward*/
  320. maskVec.push_back(vector<Point>());
  321. maskVec[2].push_back(Point(0, 0));
  322. maskVec[2].push_back(Point(0, maskHeigth));
  323. maskVec[2].push_back(Point(r[0].width, 0));
  324. maskVec.push_back(vector<Point>());
  325. maskVec[3].push_back(Point(mSize.width, 0));
  326. maskVec[3].push_back(Point(mSize.width, maskHeigth));
  327. maskVec[3].push_back(Point(mSize.width - r[2].width, 0));
  328. /*draw mask*/
  329. drawContours(maskF, maskVec, 0, Scalar(0), CV_FILLED);
  330. drawContours(maskF, maskVec, 1, Scalar(0), CV_FILLED);
  331. drawContours(maskB, maskVec, 2, Scalar(0), CV_FILLED);
  332. drawContours(maskB, maskVec, 3, Scalar(0), CV_FILLED);
  333. for (size_t i = 0; i < 4 ; i++)
  334. {
  335. Birdtransform[i] = getPerspectiveTransform(sourcePoint[i], targetPoint[i]);
  336. }
  337. if(carPic.data)
  338. {
  339. Size newCarSize = Size(carSize.width-2*ShiftAdjust.width,carSize.height-2*ShiftAdjust.height);
  340. resize(carPic,carPicTmp,newCarSize,CV_INTER_CUBIC);
  341. carPicPos = Rect(Shift.width+chessBordWidth.width+ShiftAdjust.width,
  342. Shift.height +chessBordWidth.height+ShiftAdjust.height,
  343. newCarSize.width,newCarSize.height);
  344. }
  345. ParamSet_OK = true;
  346. }
  347. }
  348. };
  349. #endif //BIRDVIEW_HPP

 最终结果如下图所示

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

闽ICP备14008679号