当前位置:   article > 正文

基于yolov5的目标检测和双目测距_yolov5 双目测距

yolov5 双目测距

目录

一.简介

1.双目视觉

2 YOLOv5

二.双目准备

1双目矫正

2.测距部分代码和函数

三.yolov5部分代码代码展示


效果展示

一.简介

1.双目视觉

双目视觉是通过两个摄像机同时拍摄同一场景,通过计算两幅图像的差异来获取深度信息的一种计算机视觉技术。在双目视觉中,两个摄像机的成像位置和角度是预先确定的,它们之间的距离被称为基线,通过计算两个相机拍摄的图像中对应像素点的视差,可以计算出每个像素点的深度。

双目视觉的主要优势在于其可以通过将两个视角的信息进行比较,来消除图像中的噪声和误差,从而获得更准确的深度信息。此外,在近距离测量和物体检测等领域中都有广泛的应用。

双目视觉的基本流程包括以下几个步骤:

  1. 相机标定:确定相机的内外参数,包括焦距、畸变系数、旋转和平移矩阵等,以及两个摄像机之间的基线长度和相对位置关系。

  2. 图像获取:使用两个摄像机同时拍摄同一个场景,获取两幅图像。

  3. 特征提取:从两幅图像中提取特征点或者特征区域,例如SIFT或SURF算法,生成特征点集合。

  4. 特征匹配:通过比较两个图像中的特征点集合,找出相同的特征,建立对应关系。

  5. 视差计算:根据特征点间的视差大小,结合相机标定参数,计算出每个像素点的深度值。

  6. 深度图生成:将深度信息转换为灰度图像,生成深度图。

虽然双目视觉技术能够提供准确的深度信息,并可以运用在机器人导航、三维重建等领域,但是该技术还面临一些挑战,例如光照变化、遮挡和反射等问题,这些问题可能会影响特征提取和匹配,从而影响深度信息的准确性。

2 YOLOv5

YOLOv5是一种目标检测算法,由美国加州大学伯克利分校的研究团队开发。与其前身YOLOv4相比,YOLOv5在速度和检测精度方面有了非常显著的提升。

YOLOv5的全称是You Only Look Once version 5,意为“你只需要看一次”即可完成目标检测任务。它采用深度神经网络架构,在单张图像上进行物体检测,可以同时检测出多个物体,并得到它们的位置、类别和置信度等信息,具有高效、准确的特点。

YOLOv5的主要优势包括:

1. 高速度:相较于其前身YOLOv4,YOLOv5平均检测速度提高了65%,同时还具有更小的模型尺寸和更少的计算量。

2. 高检测精度:通过采用新的网络架构和数据增强技术,YOLOv5在检测精度方面取得了突破性的进展。

3. 简单易用:相对于其他目标检测算法,YOLOv5的代码量较小,易于实现和调试,能够应用于多种不同的应用场景。

目前,YOLOv5已经被广泛应用于自动驾驶、智能安防、工业自动化等领域,在实时物体检测和跟踪任务中具有广泛的应用前景。

二.双目准备

原理参考:双目标定之张正友标定法数学原理详解matlab版-CSDN博客

棋盘格图片自提

链接:https://pan.baidu.com/s/1W31fTtr6db8qgTevulWeMA 
提取码:ybca

二.双目准备

1双目矫正

打开Matlab 上方的工具栏APP,找到图像处理和计算机视觉下的Stereo Camera Calibration工具,打开并将分割后的图片导入

 设置参数,对于一般的相机选择2 Coefficients选项即可,对于大视场相机则选择3 Coefficients选项。拉线删除误差较大的画面:

获取参数

在matlab控制台分别输入 stereoParams.CameraParameters1.IntrinsicMatrix 和stereoParams.CameraParameters2.IntrinsicMatrix 获得左右相机的参数,下边填写时请注意进行矩阵的转置

为了获取左相机的畸变系数:[k1, k2, p1, p2, k3],我们需要分别输入stereoParams.CameraParameters1.RadialDistortion 和 stereoParams.CameraParameters1.TangentialDistortion

分别输入 stereoParams.RotationOfCamera2 和 stereoParams 来获取双目的旋转矩阵和平移矩阵

将以上参数填写进stereoconfig.py文件里,注意转置

  1. import numpy as np
  2. # 双目相机参数
  3. class stereoCamera(object):
  4. def __init__(self):
  5. # 左相机内参
  6. self.cam_matrix_left = np.array([ [479.6018, -0.0769, 652.6060],
  7. [ 0, 478.0229, 352.3870],
  8. [ 0, 0, 1]
  9. ])
  10. # 右相机内参
  11. self.cam_matrix_right = np.array([ [489.9354, 0.2789, 641.6219],
  12. [ 0, 487.9356, 354.5612],
  13. [ 0, 0, 1]
  14. ])
  15. # 左右相机畸变系数:[k1, k2, p1, p2, k3]
  16. self.distortion_l = np.array([[-0.0791, 0.0309, -0.0009, -0.0004, -0.0091]])
  17. self.distortion_r = np.array([[-0.1153, 0.1021, -0.0011, -0.0005, -0.0459]])
  18. # 旋转矩阵
  19. self.R = np.array([ [1.0000, 0.0005, -0.0184],
  20. [-0.0005, 1.0000, 0.0001],
  21. [ 0.0184, -0.0001, 1.0000]
  22. ])
  23. # 平移矩阵
  24. self.T = np.array([[121.4655], [0.2118], [0.5950]])
  25. # 焦距
  26. self.focal_length = 749.402 # 默认值,一般取立体校正后的重投影矩阵Q中的 Q[2,3]
  27. # 基线距离
  28. self.baseline = 121.4655 # 单位:mm, 为平移向量的第一个参数(取绝对值)

2.测距部分代码和函数

  1. import sys
  2. import cv2
  3. import numpy as np
  4. import stereoconfig
  5. # 预处理
  6. def preprocess(img1, img2):
  7. # 彩色图->灰度图
  8. if (img1.ndim == 3): # 判断是否为三维数组
  9. img1 = cv2.cvtColor(img1, cv2.COLOR_BGR2GRAY) # 通过OpenCV加载的图像通道顺序是BGR
  10. if (img2.ndim == 3):
  11. img2 = cv2.cvtColor(img2, cv2.COLOR_BGR2GRAY)
  12. # 直方图均衡
  13. img1 = cv2.equalizeHist(img1)
  14. img2 = cv2.equalizeHist(img2)
  15. return img1, img2
  16. # 消除畸变
  17. def undistortion(image, camera_matrix, dist_coeff):
  18. undistortion_image = cv2.undistort(image, camera_matrix, dist_coeff)
  19. return undistortion_image
  20. # 获取畸变校正和立体校正的映射变换矩阵、重投影矩阵
  21. # @param:config是一个类,存储着双目标定的参数:config = stereoconfig.stereoCamera()
  22. def getRectifyTransform(height, width, config):
  23. # 读取内参和外参
  24. left_K = config.cam_matrix_left
  25. right_K = config.cam_matrix_right
  26. left_distortion = config.distortion_l
  27. right_distortion = config.distortion_r
  28. R = config.R
  29. T = config.T
  30. # 计算校正变换
  31. R1, R2, P1, P2, Q, roi1, roi2 = cv2.stereoRectify(left_K, left_distortion, right_K, right_distortion,
  32. (width, height), R, T, alpha=0)
  33. map1x, map1y = cv2.initUndistortRectifyMap(left_K, left_distortion, R1, P1, (width, height), cv2.CV_32FC1)
  34. map2x, map2y = cv2.initUndistortRectifyMap(right_K, right_distortion, R2, P2, (width, height), cv2.CV_32FC1)
  35. return map1x, map1y, map2x, map2y, Q
  36. # 畸变校正和立体校正
  37. def rectifyImage(image1, image2, map1x, map1y, map2x, map2y):
  38. rectifyed_img1 = cv2.remap(image1, map1x, map1y, cv2.INTER_AREA)
  39. rectifyed_img2 = cv2.remap(image2, map2x, map2y, cv2.INTER_AREA)
  40. return rectifyed_img1, rectifyed_img2
  41. # 立体校正检验----画线
  42. def draw_line(image1, image2):
  43. # 建立输出图像
  44. height = max(image1.shape[0], image2.shape[0])
  45. width = image1.shape[1] + image2.shape[1]
  46. output = np.zeros((height, width, 3), dtype=np.uint8)
  47. output[0:image1.shape[0], 0:image1.shape[1]] = image1
  48. output[0:image2.shape[0], image1.shape[1]:] = image2
  49. # 绘制等间距平行线
  50. line_interval = 50 # 直线间隔:50
  51. for k in range(height // line_interval):
  52. cv2.line(output, (0, line_interval * (k + 1)), (2 * width, line_interval * (k + 1)), (0, 255, 0), thickness=2,
  53. lineType=cv2.LINE_AA)
  54. return output
  55. # 视差计算
  56. def stereoMatchSGBM(left_image, right_image, down_scale=False):
  57. # SGBM匹配参数设置
  58. if left_image.ndim == 2:
  59. img_channels = 1
  60. else:
  61. img_channels = 3
  62. blockSize = 3
  63. paraml = {'minDisparity': 0,
  64. 'numDisparities': 64,
  65. 'blockSize': blockSize,
  66. 'P1': 8 * img_channels * blockSize ** 2,
  67. 'P2': 32 * img_channels * blockSize ** 2,
  68. 'disp12MaxDiff': 1,
  69. 'preFilterCap': 63,
  70. 'uniquenessRatio': 15,
  71. 'speckleWindowSize': 100,
  72. 'speckleRange': 1,
  73. 'mode': cv2.STEREO_SGBM_MODE_SGBM_3WAY
  74. }
  75. # 构建SGBM对象
  76. left_matcher = cv2.StereoSGBM_create(**paraml)
  77. paramr = paraml
  78. paramr['minDisparity'] = -paraml['numDisparities']
  79. right_matcher = cv2.StereoSGBM_create(**paramr)
  80. # 计算视差图
  81. size = (left_image.shape[1], left_image.shape[0])
  82. if down_scale == False:
  83. disparity_left = left_matcher.compute(left_image, right_image)
  84. disparity_right = right_matcher.compute(right_image, left_image)
  85. else:
  86. left_image_down = cv2.pyrDown(left_image)
  87. right_image_down = cv2.pyrDown(right_image)
  88. factor = left_image.shape[1] / left_image_down.shape[1]
  89. disparity_left_half = left_matcher.compute(left_image_down, right_image_down)
  90. disparity_right_half = right_matcher.compute(right_image_down, left_image_down)
  91. disparity_left = cv2.resize(disparity_left_half, size, interpolation=cv2.INTER_AREA)
  92. disparity_right = cv2.resize(disparity_right_half, size, interpolation=cv2.INTER_AREA)
  93. disparity_left = factor * disparity_left
  94. disparity_right = factor * disparity_right
  95. # 真实视差(因为SGBM算法得到的视差是×16的)
  96. trueDisp_left = disparity_left.astype(np.float32) / 16.
  97. trueDisp_right = disparity_right.astype(np.float32) / 16.
  98. return trueDisp_left, trueDisp_right
  99. def getDepthMapWithQ(disparityMap: np.ndarray, Q: np.ndarray) -> np.ndarray:
  100. points_3d = cv2.reprojectImageTo3D(disparityMap, Q) # points_3d 是一个三维的数组,前面两个是宽和高,第三维是一个(x,y,z)的坐标
  101. points = points_3d[:, :, 0:3]
  102. depthMap = points_3d[:, :, 2] # 索引三维数组的最后一维,就是深度信息
  103. reset_index = np.where(np.logical_or(depthMap < 0.0, depthMap > 65535.0))
  104. depthMap[reset_index] = 0
  105. return depthMap.astype(np.float32)
  106. if __name__ == '__main__':
  107. # 读取图片
  108. cap = cv2.VideoCapture(0)
  109. cap.set(3, 1280)
  110. cap.set(4, 480) # 打开并设置摄像头
  111. while True:
  112. ret, frame = cap.read()
  113. iml = frame[0:480, 0:640]
  114. imr = frame[0:480, 640:1280] # 分割双目图像
  115. if (iml is None) or (imr is None):
  116. print("Error: Images are empty, please check your image's path!")
  117. sys.exit(0)
  118. height, width = iml.shape[0:2] # 对图像进行切片操作,前面两位是高和宽
  119. iml_, imr_ = preprocess(iml, imr) # 预处理,一般可以削弱光照不均的影响,不做也可以
  120. # 读取相机内参和外参
  121. # 使用之前先将标定得到的内外参数填写到stereoconfig.py中的StereoCamera类中
  122. config = stereoconfig.stereoCamera()
  123. # print(config.cam_matrix_left)
  124. # 立体校正
  125. map1x, map1y, map2x, map2y, Q = getRectifyTransform(height, width, config) # 获取用于畸变校正和立体校正的映射矩阵以及用于计算像素空间坐标的重投影矩阵
  126. iml_rectified, imr_rectified = rectifyImage(iml, imr, map1x, map1y, map2x, map2y)
  127. # print(Q)
  128. # 绘制等间距平行线,检查立体校正的效果
  129. line = draw_line(iml_rectified, imr_rectified)
  130. cv2.imwrite('check_rectification.png', line)
  131. # 立体匹配
  132. disp, _ = stereoMatchSGBM(iml_rectified, imr_rectified, False) # 这里传入的是经立体校正的图像
  133. cv2.imwrite('disaprity.png', disp * 4)
  134. # fx = config.cam_matrix_left[0, 0]
  135. # fy = fx
  136. # cx = config.cam_matrix_left[0, 2]
  137. # cy = config.cam_matrix_left[1, 2]
  138. # print(fx, fy, cx, cy)
  139. # 计算像素点的3D坐标(左相机坐标系下)
  140. points_3d = cv2.reprojectImageTo3D(disp, Q) # 参数中的Q就是由getRectifyTransform()函数得到的重投影矩阵
  141. # 设置想要检测的像素点坐标(x,y)
  142. x = 120
  143. y = 360
  144. cv2.circle(iml, (x, y), 5, (0, 0, 255), -1)
  145. # x1 = points_3d[y, x] # 索引 (y, x) 对应的是三维坐标 (x1, y1, z1)
  146. # print(x1)
  147. print('x:', points_3d[int(y), int(x), 0], 'y:', points_3d[int(y), int(x), 1], 'z:',
  148. points_3d[int(y), int(x), 2]) # 得出像素点的三维坐标,单位mm
  149. print('distance:', (points_3d[int(y), int(x), 0] ** 2 + points_3d[int(y), int(x), 1] ** 2 + points_3d[
  150. int(y), int(x), 2] ** 2) ** 0.5) # 计算距离,单位mm
  151. cv2.namedWindow("disparity", 0)
  152. cv2.imshow("disparity", iml)
  153. # cv2.setMouseCallback("disparity", onMouse, 0)
  154. # 等待用户按键,如果按下 'q' 键或者 Esc 键,则退出循环
  155. c = cv2.waitKey(1) & 0xFF
  156. if c == 27 or c == ord('q'):
  157. break
  158. # 释放视频对象并关闭窗口
  159. cap.release()
  160. cv2.destroyAllWindows()

三.yolov5部分代码代码展示

  1. # 读取相机内参和外参
  2. config = stereoconfig_040_2.stereoCamera()
  3. # 立体校正
  4. map1x, map1y, map2x, map2y, Q = getRectifyTransform(720, 1280, config) # 获取用于畸变校正和立体校正的映射矩阵以及用于计算像素空间坐标的重投影矩阵
  5. for path, img, im0s, vid_cap in dataset:
  6. img = torch.from_numpy(img).to(device)
  7. img = img.half() if half else img.float() # uint8 to fp16/32
  8. img /= 255.0 # 0 - 255 to 0.0 - 1.0
  9. if img.ndimension() == 3:
  10. img = img.unsqueeze(0)
  11. # Inference
  12. t1 = time_synchronized()
  13. pred = model(img, augment=opt.augment)[0]
  14. # Apply NMS
  15. pred = non_max_suppression(pred, opt.conf_thres, opt.iou_thres, classes=opt.classes, agnostic=opt.agnostic_nms)
  16. t2 = time_synchronized()
  17. # Apply Classifier
  18. if classify:
  19. pred = apply_classifier(pred, modelc, img, im0s)
  20. # Process detections
  21. for i, det in enumerate(pred): # detections per image
  22. if webcam: # batch_size >= 1
  23. p, s, im0, frame = path[i], '%g: ' % i, im0s[i].copy(), dataset.count
  24. else:
  25. p, s, im0, frame = path, '', im0s, getattr(dataset, 'frame', 0)
  26. ###############################
  27. #stereo code
  28. fps_set = 10 #setting the frame
  29. if(accel_frame % fps_set == 0):
  30. #t3 = time.time() # stereo time start 0.510s
  31. #string = ''
  32. #thread = threading.Thread(target = mythread,args = ((config,im0,map1x, map1y, map2x, map2y,Q)) )
  33. thread= MyThread(stereo_threading,args = (config,im0,map1x, map1y, map2x, map2y,Q))
  34. thread.start()
  35. #if(accel_frame % fps_set == 0):
  36. # thread.join()
  37. #points_3d = thread.get_result()
  38. print()
  39. print(threading.active_count()) #获取已激活的线程数
  40. print(threading.enumerate()) # see the thread list,查看所有线程信息,一个<_MainThread(...)> 带多个 <Thread(...)>
  41. print()
  42. print("############## Frame is %d !##################" %accel_frame)
  43. p = Path(p) # to Path
  44. if webcam:
  45. save_stream_path = str(save_stream_dir / "stream0.mp4") # save streams path
  46. else:
  47. save_path = str(save_dir / p.name) # img.jpg
  48. txt_path = str(save_dir / 'labels' / p.stem) + ('' if dataset.mode == 'image' else f'_{frame}') # img.txt
  49. s += '%gx%g ' % img.shape[2:] # print string
  50. #print("txt_path is %s"%txt_path)
  51. gn = torch.tensor(im0.shape)[[1, 0, 1, 0]] # normalization gain whwh
  52. if len(det):
  53. # Rescale boxes from img_size to im0 size
  54. det[:, :4] = scale_coords(img.shape[2:], det[:, :4], im0.shape).round()
  55. # Print results
  56. for c in det[:, -1].unique():
  57. n = (det[:, -1] == c).sum() # detections per class
  58. s += f"{n} {names[int(c)]} {'s' * (n > 1)} , " # add to string

本项目不开源,需要的私聊 ,谢谢

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

闽ICP备14008679号