./create_topomap.sh Image with strange color
GaHooooo opened this issue · 2 comments
GaHooooo commented
ajaysridhar0 commented
It looks like the image is in the BGR color format rather than the RGB color format with the ROS topic you are using. Can you try adding this line at the end of the callback_obs()
function in the drive-any-robot/deployment/src/create_topomap.py
file:
img = img[:,:,::-1] # flip the color channels of the PIL Image
Let me know if this works or not.
chungcode0218 commented
The code you provided solved my problem, thank you!