-
Notifications
You must be signed in to change notification settings - Fork 658
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
Map does not appear anymore in sample demo #2789
Comments
(Maybe) related issue: ros2/rviz#948 |
OpenGL is broken in Ubuntu 22.04 containers because some mesa libs are too old. Upgrading the mesa libs in the container with the third-party repository Should we consider updating autoware humble container with that fix? |
If the fixed release won't be released or if you're in a hurry, I think it's allowed. |
@mitsudome-r do you want to propose a fix for this? Out of curiousity, I have tested glxgears on ubuntu 22.10 and 23.04 containers. The OpenGL app crashes in both cases:
On Ubuntu 23.04, the latest mesa version is 22.2.5. So the bug has been fixed somewhere between 22.2.5 and 22.3.5. I don't see many people complaining about it though (mostly people on Windows). So there may be something specific on my machine (like local mesa version, docker version, etc). In any case, I have added these lines to my dev dockerfile and everything works fine now: # for apt-add-repository
RUN apt update && apt install -y software-properties-common \
&& rm -rf /var/lib/apt/lists/*
# fix OpenGL issues with old mesa libs on Ubuntu 22.04 (e.g. black view in rviz2)
RUN apt-add-repository ppa:kisak/kisak-mesa && apt install -y \
libegl-mesa0 libegl1-mesa-dev libgbm-dev libgbm1 libgl1-mesa-dev \
libgl1-mesa-dri libglapi-mesa libglx-mesa0 \
&& rm -rf /var/lib/apt/lists/* |
@VRichardJP Sorry for the late reply. |
@VRichardJP, @mitsudome-r - The same problem appears in the |
1 similar comment
@VRichardJP, @mitsudome-r - The same problem appears in the |
@VRichardJP , I am also facing the same issue. Is the above fix is applied to autoware/awsim-stable. ? |
Checklist
Description
I am trying to run the planning simulator on the latest
main
branch. I can't get to visualize the PCD/lanelet maps on Rviz anymore (it worked just fine just a few weeks ago). I have tested several maps, including the sample map:The 3d view screen just stays black, moving around does not make a difference:
According to the coordinates in the /map tf, the camera is looking at map location, so I should be able to see something.
I am using latest main from github :
The logs do not seem to report any map related error:
log.txt
Any idea?
Expected behavior
Map appears in Rviz
Actual behavior
Black screen
Steps to reproduce
Run sample demo?
Versions
Possible causes
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: