当前位置:   article > 正文

大象机器人人工智能套装aikit 2023 3D与机械臂结合!

大象机器人人工智能套装aikit 2023 3D与机械臂结合!

引言

今天我们主要了解3D摄像头是如何跟机械臂应用相结合的。我们最近准备推出一款新的机械臂套装AI Kit 2023 3D,熟悉我们的老用户应该知道,我们之前的AI Kit 2023套装使用的是2D摄像头。

随着技术进步,市场需求和领域的扩大,2D的摄像头已经不能够满足很多场景。3D摄像头也在近些年间火了起来。随着我们的步伐,一起来认识一下3D摄像头带给我们的应用。

产品介绍

RealSence-Depth camera

我们今天涉及到的3D摄像头是RealSence是Intel公司开发的一种深度感知摄像头。可以从图片中看出来,这个相机有四个镜头,它们分别是一个红外激光投影仪,两个红外摄像头和一个彩色摄像头。这几个镜头具体有啥作用:

红外激光投影仪:

投射一个红外光点网格到场景中,然后这些光点被红外摄像头捕获。因为投影仪和摄像头的位置是固定的,所以通过计算光点在摄像头中的位置偏移,可以推算出每个光点对应的物体距离摄像头的距离,从而得到场景的深度信息。

红外摄像头:

红外摄像头是一种能够捕获红外光谱的摄像头。红外光谱是电磁谱中的一部分,其波长长于可见光,但短于微波。红外摄像头的主要作用是能够在无可见光照明的条件下进行成像,因为许多物体会发射、反射或透过红外光。

彩色摄像头:

通常用于捕获场景的常规视觉信息,而其他的摄像头则用于捕获额外的信息,如场景的深度信息或在低光照条件下的图像。这些信息可以与彩色摄像头捕获的图像相结合,以提供更丰富的视觉数据,支持更高级的功能,如面部识别、增强现实或3D建模等。

结合这四个摄像头的功能,能够获取一个物体的三维信息,这种技术可以用于人脸识别、手势识别、物体识别、测量物体的深度等多种应用。

Artificial Intelligence Kit 3D

人工智能3D套装是机械臂应用人工智能,机器视觉的入门款套装。套装使用了四种识别算法,颜色识别,形状识别,yolov8等,适配可视化的操作界面,使用3D摄像头解决了2D摄像头需要标志定位的短板,开源代码基于python平台,可通过开发软件实现机械臂的控制

该套装是搭配机械臂(myCobot,mechArm,myArm)进行使用,仿工业场景的构造。

myCobot 280

myCobot 280 M5是一款由Elephant Robotics和M5Stack联合开发的最小和最轻的六轴协作机器人。它采用集成模块化设计,重量仅为850克,非常轻巧,搭载6个高性能伺服电机,具有快速响应,惯性小和平滑旋转的特点。

3D摄像头应用领域

如果在同一个应用领域中,用2D摄像头和3D摄像头它们的表型性能会怎样。从我们身边常见的来了解:

从图标中可以知道,2D摄像头需要通过特定的算法来得到一些参数,而3D摄像头能够直接获取较多的信息,在同一应用领域下的性能更加精准。在未来的,3D摄像头的趋势必然是飞速增长的!

这也是我们推出3D人工智能套装的原因之一,跟上时代的步伐。

算法介绍

机械臂视觉识别,一定会涉及手眼标定。虽然两种版本的手眼标定的流程是一样的,但是他们在计算中还是会有一些差别,我们先看它们的识别区。

从中间的是被区域可以看到,3D版本已经没有了二维码的标识,在2D版本上二维码的标识的主要功能是确定识别的区域,以及提供一个固定高度的值。在获取了三维数据之后,就不需要用到二维码进行标识了,可以直接获取到相机距离平面高度的值。

这一点体现了3D摄像头能够直接获取深度的信息。

如何使用 realsence 在python中

  1. environment build
  2. operate system:window10/11
  3. program language:python 3.9+
  4. libraries:
  5. from typing import TupleOptional
  6. import pyrealsense2 as rs
  7. import numpy as np
  8. import cv2
  9. import time
  10. class RealSenseCamera:
  11.     def __init__(self):
  12.         super().__init__()
  13.         # Configure depth and color streams
  14.         self.pipeline = rs.pipeline()
  15.         self.config = rs.config()
  16.         self.config.enable_stream(rs.stream.color, 19201080, rs.format.bgr8, 30)
  17.         # Is the camera mirror image reversed
  18.         self.flip_h = False
  19.         self.flip_v = False
  20.         # Get device product line for setting a supporting resolution
  21.         pipeline_wrapper = rs.pipeline_wrapper(self.pipeline)
  22.         pipeline_profile = self.config.resolve(pipeline_wrapper)
  23.         # set auto exposure
  24.         color = pipeline_profile.get_device().query_sensors()[0]
  25.         color.set_option(rs.option.enable_auto_exposure, True)
  26.         device = pipeline_profile.get_device()
  27.         sensor_infos = list(
  28.             map(lambda x: x.get_info(rs.camera_info.name), device.sensors)
  29.         )
  30.         # set resolution
  31.         self.config.enable_stream(rs.stream.color, 640480, rs.format.bgr8, 30)
  32.         self.config.enable_stream(rs.stream.depth, 640480, rs.format.z16, 30)
  33.         align_to = rs.stream.color
  34.         self.align = rs.align(align_to)
  35.     def capture(self):
  36.         # Start streaming
  37.         self.pipeline.start(self.config)
  38.         # warm up
  39.         for i in range(60):
  40.             pipeline = self.pipeline
  41.             frames = pipeline.wait_for_frames()
  42.     def release(self):
  43.         self.pipeline.stop()
  44.     def update_frame(self) -> None:
  45.         pipeline = self.pipeline
  46.         frames = pipeline.wait_for_frames()
  47.         aligned_frames = self.align.process(frames)
  48.         self.curr_frame = aligned_frames
  49.         self.curr_frame_time = time.time_ns()
  50.     def color_frame(self) -> Optional[np.ndarray]:
  51.         frame = self.curr_frame.get_color_frame()
  52.         if not frame:
  53.             return None
  54.         frame = np.asanyarray(frame.get_data())
  55.         if self.flip_h:
  56.             frame = cv2.flip(frame, 1)
  57.         if self.flip_v:
  58.             frame = cv2.flip(frame, 0)
  59.         return frame
  60.     def depth_frame(self) -> Optional[np.ndarray]:
  61.         frame = self.curr_frame.get_depth_frame()
  62.         if not frame:
  63.             return None
  64.         frame = np.asanyarray(frame.get_data())
  65.         if self.flip_h:
  66.             frame = cv2.flip(frame, 1)
  67.         if self.flip_v:
  68.             frame = cv2.flip(frame, 0)
  69.         return frame

颜色识别和形状识别都是基于openCV提供的算法来识别物体抓取物体。只需要简单的做一个hsv的检测的算法就能够检测出来颜色。

  1. # 初始化要识别的颜色
  2.     def __init__(self) -> None:
  3.         self.area_low_threshold = 15000
  4.         self.detected_name = None
  5.         self.hsv_range = {
  6.             "green": ((405050), (90256256)),
  7.             # "blueA": ((91, 100, 100), (105, 256, 256)),
  8.             # "yellow": ((20, 240, 170), (30, 256, 256)),
  9.             "yellow": ((154643), (30256256)),
  10.             "redA": ((0100100), (6256256)),
  11.             "redB": ((170100100), (179256256)),
  12.             # "orange": ((8, 100, 100), (15, 256, 256)),
  13.             "blue": ((1004346), (124256256)),
  14.         }
  15. # 对图像的处理
  16. result = []
  17.         for color, (hsv_low, hsv_high) in self.hsv_range.items():
  18.             hsv_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)
  19.             in_range = cv2.inRange(hsv_frame, hsv_low, hsv_high)
  20.             # 对颜色区域进行膨胀和腐蚀
  21.             kernel = np.ones((55), np.uint8)
  22.             in_range = cv2.morphologyEx(in_range, cv2.MORPH_CLOSE, kernel)
  23.             in_range = cv2.morphologyEx(in_range, cv2.MORPH_OPEN, kernel)
  24.             contours, hierarchy = cv2.findContours(
  25.                 in_range, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE
  26.             )
  27.             contours = list(
  28.                 filter(lambda x: cv2.contourArea(x) > self.area_low_threshold, contours)
  29.             )
  30.             rects = list(map(cv2.minAreaRect, contours))
  31.             boxes = list(map(cv2.boxPoints, rects))
  32.             boxes = list(map(np.int32, boxes))
  33.             if len(boxes) != 0:
  34.                 if color.startswith("red"):
  35.                     color = "red"
  36.                 for box in boxes:
  37.                     result.append(ColorDetector.DetectResult(color, box))
  38.                     # self.detected_name = result
  39.                     self.detected_name = result[0].color
  40.         return result

YOLOv8 和拆码垛

 我们在这个套装里面还使用到了目前比较火的一款识别模型YOLOv8,此模型还涉及到深度学习和模型训练等功能。

YOLOv8是一种目标检测算法,它是基于深度学习的YOLO(You Only Look Once)系列算法的最新版本。YOLO算法是一种实时目标检测算法,其特点是能够在一次前向传播中同时完成目标检测和定位,速度非常快。Home - Ultralytics YOLOv8 Docs

主要特点:

  • 高性能:YOLOv8在目标检测任务中具有较高的准确性和速度。它能够在实时或接近实时的速度下进行目标检测,适用于各种应用场景。
  • 简单而有效的设计:YOLOv8采用了简单而有效的设计,通过使用更深的网络结构和更多的特征层来提高检测性能。它还使用了一种自适应的训练策略,可以在不同的目标检测任务上进行快速训练和调整。
  • 多种规模的检测:YOLOv8提供了不同的模型大小,包括小型、中型和大型模型,以满足不同场景下的需求。这些模型可以在不同的硬件设备上进行部署和使用。
  • 开源和易用性:YOLOv8是开源的,代码和预训练模型都可以在GitHub上获得。它还提供了简单易用的API,使得用户可以方便地进行模型训练、推理和部署。

要使用YOLOv8是需要进行自定义训练模型的,在进行目标检测任务是,根据具体应用场景和需求,通过在自定义数据集上进行训练得到模型。

为什么要训练模型呢?训练模型的目的是让计算机能够自动识别和定位图像或视频中的目标物体。通过训练模型,我们可以让计算机学会如何识别不同种类的物体,并且能够准确地定位它们的位置。这对于许多应用场景非常重要,比如自动驾驶、安防监控、智能交通等。

对此我们的源码文件中已经包含了我们自己训练的模型,如果你对YOLOv8的技术很熟练了,你可以自己对识别物体进行训练。

下面的代码是程序中使用的代码

  1. class YOLODetector:
  2.     DetectResult = List[ultralytics.engine.results.Results]
  3.     def __init__(self) -> None:
  4.         """
  5.         init YOLO model。
  6.         """
  7.         self.model_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + '/resources/yolo/best.pt'
  8.         self.model = YOLO(self.model_path)
  9.         self.predict_args = {"conf"0.2}
  10.         self.detected_name = None
  11.     def get_radian(self, res: DetectResult):
  12.         return 0
  13.     def detect(self, frame: np.ndarray):
  14.         """
  15.         Perform object detection on input images.
  16.         Args:
  17.             frame (np.ndarray): Input image frame.
  18.         Returns:
  19.             List[DetectResult]: A list containing the detection results.
  20.         """
  21.         res = self.model.predict(frame, **self.predict_args)
  22.         res = list(filter(lambda x: len(x.boxes) != 0, res))
  23.         if len(res) == 0:
  24.             return None
  25.         else:
  26.             names = self.get_names(res)
  27.             self.detected_name = names
  28.             return res
  29.     def draw_result(self, frame: np.ndarray, res: List[DetectResult]):
  30.         """
  31.         Draws the bounding box of the detection results on the image.
  32.         Args:
  33.              frame (np.ndarray): Input image frame.
  34.              res (List[DetectResult]): List of detection results.
  35.         """
  36.         res = list(filter(lambda x: len(x.boxes) != 0, res))
  37.         for r in res:
  38.             boxes = r.boxes.xyxy.numpy()
  39.             for box in boxes:
  40.                 x1, y1, x2, y2 = box.astype(int)
  41.                 cv2.rectangle(frame, (x1, y1), (x2, y2), color=(02550), thickness=1)
  42.                 cv2.putText(frame, "Name: " + str(self.detected_name), (2080),
  43.                             cv2.FONT_HERSHEY_COMPLEX_SMALL, 1,
  44.                             (00255))
  45.             # x1, y1, x2, y2 = np.squeeze(r.boxes.xyxy.numpy()).astype(int)
  46.             # cv2.rectangle(frame, (x1, y1), (x2, y2), color=(0, 255, 0), thickness=1)
  47.     def target_position(self, res: DetectResult) -> Tuple[intint]:
  48.         """
  49.         Extract the location information of the target from the detection results.
  50.          Args:
  51.              res (DetectResult): detection result.
  52.          Returns:
  53.              Tuple[int, int]: The position coordinates (x, y) of the target.
  54.         """
  55.         boxes = res.boxes.xywh.numpy()
  56.         boxs_list = []
  57.         for box in boxes:
  58.             x, y, w, h = box.astype(int)
  59.             boxs_list.append((x, y))
  60.         boxs_list = tuple(boxs_list)
  61.         return boxs_list
  62.     def get_rect(self, res: DetectResult):
  63.         """
  64.         Obtain the bounding box coordinate information of the target from the detection result.
  65.         Args:
  66.              res (DetectResult): detection result.
  67.          Returns:
  68.              List[Tuple[int, int]]: The bounding box coordinate information of the target, including four vertex coordinates.
  69.         """
  70.         boxes = res.boxes.xywh.numpy()
  71.         box_list = []
  72.         for box in boxes:
  73.             x, y, w, h = box.astype(int)
  74.             size = 3
  75.             rect = [
  76.                 [x - size, y - size],
  77.                 [x + size, y - size],
  78.                 [x + size, y + size],
  79.                 [x - size, y + size],
  80.             ]
  81.             box_list.append(rect)
  82.         return box_list
  83.     def get_names(self, res: DetectResult):
  84.         """
  85.         Get the category name in the detection results
  86.         Args:
  87.              res (DetectResult): detection result.
  88.          Returns:
  89.              List[names]: A list category names.
  90.         """
  91.         names_dict = {
  92.             0'jeep'1'apple'2'banana1'3'bed'4'grape',
  93.             5'laptop'6'microwave'7'orange'8'pear',
  94.             9'refrigerator1'10'refrigerator2'11'sofa'12'sofa2',
  95.             13'tv'14'washing machine1'
  96.         }
  97.         ids = [int(cls) for cls in res[0].boxes.cls.numpy()]  # Assuming you have only one result in the list
  98.         names = [names_dict.get(id'Unknown'for id in ids]
  99.         return names

搭配上3D摄像头的特性,获取被识别的物体的高度实现拆码垛的demo,能够将他们像拆积木一样拆除。

总结

我们的机械臂和深度摄像头套装不仅是一款产品,更是一个开启学习之门的机会。这个套装以用户友好的方式,提供了一个理想的平台,让初学者可以在实践中探索和学习机械臂操作和机器视觉的知识,更重要的是,它提供了一个独特的机会,让用户能够深入理解和掌握3D相机算法。

随着科技的进步,3D摄像头的应用正在迅速扩展到多个领域,包括但不限于制造、安全、娱乐和医疗。我们坚信,通过使用我们的套装,用户将能够把握这一技术趋势,为自己的未来学习和职业生涯奠定坚实的基础。

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

闽ICP备14008679号