-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add downsampleCloudMsg
function to noetic-devel
#58
Add downsampleCloudMsg
function to noetic-devel
#58
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for submitting a Pull Request for my upcoming tasks. I appreciate your contribution and will proceed with a code review for this PR.
-
The function
msg2TransformedCloud()
appears to be unused and therefore seems unnecessary. You can find it here:
Link to code snippet -
The usage of
cloud2TransformedCloud()
is correct in the following part of the code:
Link to code snippet
However, the waycloud2TransformedCloud()
is utilized here seems to be incorrect:
Link to code snippet
It should actually contain the following transformation:geometry_msgs::TransformStamped tf = tf_buffer_->lookupTransform(cam_model_.tfFrame(), header.frame_id, header.stamp);
Therefore, it would be beneficial to modify
cloud2TransformedCloud()
to take the source and target frames as arguments to increase its versatility. -
Regarding the GitHub Actions, all checks are failing due to an oversight on my part. It seems that removing the following lines should fix the issue:
Link to CI configuration
This fix is beyond the scope of this PR, so I will address it in a separate PR. However, if it's of concern to you, feel free to make the correction within this PR.
I have checked the changes made so far. I would appreciate it if you could confirm the following points.
英語があまり得意な方ではないので、ミスリーディングを減らすために日本語も残しておきます。
|
@Alpaca-zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844141/job/21508091103?pr=58
Please delete the following section.
ultralytics_ros/.github/workflows/noetic-docker-build-check.yml
Lines 16 to 17 in c23d77f
with: | |
ref: ${{ github.head_ref }} |
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844137/job/21508091095?pr=58
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844137/job/21508091683?pr=58
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844137/job/21508091421?pr=58
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844137/job/21508091860?pr=58
https://github.com/Alpaca-zip/ultralytics_ros/actions/runs/7881844137/job/21508091994?pr=58
I haven't encountered above issues with the GitHub Action before(*), and since it's not clear what's causing it, I'll handle it separately and keep an eye on things.
Sorry for the inconvenience, it seems that the GitHub Action failed because the repository you forked to did not have access to Secrets. The Docker login is not required just to build the image, so could you please remove the code in the following section? ultralytics_ros/.github/workflows/noetic-docker-build-check.yml Lines 20 to 24 in dfbdb23
I'd like to proceed with the merge after making this adjustment. Thank you for your cooperation. |
|
3c1416f
to
4c8a92f
Compare
PR Type
Overview
@Alpaca-zip mentioned that there is a plan to add the
downsampleCloudMsg
feature tonoetic-devel
, as mentioned in the comment below, which is why this function is being added.track_with_cloud_node
. #57 (comment)Detail
Test
Attention