GithubHelp home page GithubHelp logo

Comments (3)

JacopoPan avatar JacopoPan commented on July 18, 2024

Hi @alexvaca0

I suppose this happens when creating an env with gui=True at this line?

env = TakeoffAviary(gui=True,

I don't think you can start PyBullet's GUI from Colab, you should be able to avoid the error by setting gui=False

If you want to implement rendering in Colab you can look at this example exploiting p.getCameraImage and IPython.display

Camera images are actually saved in BaseAviary on this line (when gui == False and record == True)

[w, h, rgb, dep, seg] = p.getCameraImage(width=self.VID_WIDTH,

from gym-pybullet-drones.

avacaondata avatar avacaondata commented on July 18, 2024

Hi @JacopoPan , thanks a lot for the quick response, you're being really helpful here :)

Yes, I'm leaving gui=True at that line, my intention was to watch the video dynamically as it's rendered from the env. Okay so first thing I'll do is set that argument to False.
I'm checking your example and it seems understandable, therefore instead of using the PyBullet's GUI, what I'd need to do is load the environment and my agent in the notebook, and then run some episodes, saving the images in the environment object, and accessing them to save all the frames with which I can make the video, right?

from gym-pybullet-drones.

JacopoPan avatar JacopoPan commented on July 18, 2024

Happy to (try to) help @alexvaca0,

admittedly, the current implementation is not intended for graphical display/rendering with Colab.

What I do in BaseAviary is using p.getCameraImage to save frames when gui == False and record == True
These images are taken at self.CAPTURE_FREQ and saved under self.IMG_PATH

(Image.fromarray(np.reshape(rgb, (h, w, 4)), 'RGBA')).save(self.IMG_PATH+"frame_"+str(self.FRAME_NUM)+".png")

What I'm suggesting you could do is to append these frames in an array, make a video, and show it in Colab as in the example linked above (with the caveat that you are rendering it after the experiment, not during it)

print("creating animated png, please about 5 seconds")
%time write_apng("example6.png", frames, delay=100)
%time Image(filename="example6.png")

from gym-pybullet-drones.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.