Closed minoring closed 11 months ago
Hi, in the codebase, we use the gl image rendering by default (see notebook example: https://github.com/Lifelong-Robot-Learning/LIBERO/blob/master/notebooks/quick_walkthrough.ipynb). Can you double-check if you are using the same image rendering method between both reading from env.reset()
and from demonstration data?
Thank you for your response! I'm curious about whether grid_image.numpy()[::-1]
flips the image vertically in your shared notebook. Could you please provide some clarification on this? Thanks!
Because we are using gl version as default, the image is upside down using the jupyter notebook visualization. It doesn't matter which function to use to visualize images, and you will need to flip images based on if a function assumes gl convention or the cv convention. The important thing is to keep the format of images consistent.
Thank you for your response. I'm closing this issue as everything has been clarified now!
Hello, thank you for your excellent work!
I have a concern that might be incorrect, but it appears that the images in the demonstration dataset, both agentview_rgb and eye_in_hand_rgb, seem to be flipped upside down. I noticed this when comparing the first image from env.reset() with a second image from the demonstration data.
For reference, this is the code I used to visualize the demonstration data: