No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.1.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/jiduowang/double-headed-sentinel.git
VCS Type git
VCS Version main
Last Updated 2024-04-15
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

A template for ROS packages.

Additional Links

Maintainers

  • Chen Jun

Authors

  • Chen Jun

armor_detector_first

该包主要用于接受第一个相机的信息(默认为云台左边的相机)并做识别处理

识别节点

订阅相机参数及图像流进行装甲板的识别并解算三维位置,输出识别到的装甲板在输入frame下的三维位置 (一般是以相机光心为原点的相机坐标系)

DetectorNode

装甲板识别节点

包含Detector 包含PnPSolver

订阅:

  • 相机参数 /camera_info_first
  • 彩色图像 /image_raw_first

发布:

  • 识别目标 /detector/armors_first

静态参数:

  • 筛选灯条的参数 light
    • 长宽比范围 min/max_ratio
    • 最大倾斜角度 max_angle
  • 筛选灯条配对结果的参数 armor
    • 两灯条的最小长度之比(短边/长边)min_light_ratio
    • 装甲板两灯条中心的距离范围(大装甲板)min/max_large_center_distance
    • 装甲板两灯条中心的距离范围(小装甲板)min/max_small_center_distance
    • 装甲板的最大倾斜角度 max_angle

动态参数:

  • 是否发布 debug 信息 debug
  • 识别目标颜色 detect_color
  • 二值化的最小阈值 binary_thres
  • 数字分类器 classifier
    • 置信度阈值 threshold

Detector

装甲板识别器

preprocessImage

预处理

原图 通过颜色二值化 通过灰度二值化

由于一般工业相机的动态范围不够大,导致若要能够清晰分辨装甲板的数字,得到的相机图像中灯条中心就会过曝,灯条中心的像素点的值往往都是 R=B。根据颜色信息来进行二值化效果不佳,因此此处选择了直接通过灰度图进行二值化,将灯条的颜色判断放到后续处理中。

findLights

寻找灯条

通过 findContours 得到轮廓,再通过 minAreaRect 获得最小外接矩形,对其进行长宽比和倾斜角度的判断,可以高效的筛除形状不满足的亮斑。

判断灯条颜色这里采用了对轮廓内的的R/B值求和,判断两和的的大小的方法,若 sum_r > sum_b 则认为是红色灯条,反之则认为是蓝色灯条。

提取出的红色灯条 提取出的蓝色灯条

matchLights

配对灯条

根据 detect_color 选择对应颜色的灯条进行两两配对,首先筛除掉两条灯条中间包含另一个灯条的情况,然后根据两灯条的长度之比、两灯条中心的距离、配对出装甲板的倾斜角度来筛选掉条件不满足的结果,得到形状符合装甲板特征的灯条配对。

NumberClassifier

数字分类器

extractNumbers

提取数字

原图 透视变换 取ROI 二值化

将每条灯条上下的角点拉伸到装甲板的上下边缘作为待变换点,进行透视变换,再对变换后的图像取ROI。考虑到数字图案实质上就是黑色背景+白色图案,所以此处使用了大津法进行二值化。

Classify

分类

由于上一步对于数字的提取效果已经非常好,数字图案的特征非常清晰明显,装甲板的远近、旋转都不会使图案产生过多畸变,且图案像素点少,所以我们使用多层感知机(MLP)进行分类。

网络结构中定义了两个隐藏层和一个分类层,将二值化后的数字展平成 20x28=560 维的输入,送入网络进行分类。

网络结构:

PnPSolver

PnP解算器

Perspective-n-Point (PnP) pose computation

PnP解算器将 cv::solvePnP() 封装,接口中传入 Armor 类型的数据即可得到 geometry_msgs::msg::Point 类型的三维坐标。

考虑到装甲板的四个点在一个平面上,在PnP解算方法上我们选择了 cv::SOLVEPNP_IPPE (Method is based on the paper of T. Collins and A. Bartoli. “Infinitesimal Plane-Based Pose Estimation”. This method requires coplanar object points.)

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged armor_detector_first at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.