Giter Site home page Giter Site logo

Comments (7)

jvcleave avatar jvcleave commented on August 17, 2024

I don't think I would use loadPixels for this - see
https://github.com/jvcleave/ofxImGui/blob/develop/example-experimental/src/ofApp.cpp

On May 1, 2016, at 2:46 AM, Bk8 [email protected] wrote:

Im loading pixels from a video and RAM usage starts to increase a lot;


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#32

from ofximgui.

Bk8 avatar Bk8 commented on August 17, 2024

Thanks I figured out what I was doing wrong. I wanted to embed the video player in a gui window, but the problem was I was leaking every frame of the video, I was using:

fingerMovieThumb=gui.loadPixels(fingerMovie.getPixels());
ImGui::Image((ImTextureID)(uintptr_t)fingerMovieThumb, ImVec2(vidWidth,vidHeight));

so to free the memory I'm using now:

glDeleteTextures(1,&fingerMovieThumb);

and this solves the problem, it would be nice to have a ofxImGui method to remove unnecessary frames instead of using opengl functions.

from ofximgui.

jvcleave avatar jvcleave commented on August 17, 2024

You shouldn't need pixels at all as the moviePlayer has a texture reference you can pass in. However getting that texture into the right format can be a bit tricky (which is why I use the FBO in the above link)

from ofximgui.

jordiexvision avatar jordiexvision commented on August 17, 2024

However getting that texture into the right format can be a bit tricky (which is why I use the FBO in the above link)

@jvcleave could you please elaborate on how tricky would it be and why? I'm also writing a video module using ImGui so I wonder what will be the best way to pass the texture to ImGui. Will the use of ofFBO be much slower? what are the requirements of the machine if using ofFBO vs ofTexture?

Thank you so much for the wonderful addon. In my opinion this is by far the best gui we've got (oF ppl) so far :)

from ofximgui.

jvcleave avatar jvcleave commented on August 17, 2024

from ofximgui.

jordiexvision avatar jordiexvision commented on August 17, 2024

Thank you for your reply!
I will give it a try with your suggestion (ofVideoPlayer = ofFBO) and see how far i get.

from ofximgui.

jordiexvision avatar jordiexvision commented on August 17, 2024

I just saw there is a patch to support loading pixels without alpha:
#24

Somehow related to the ofVideoPlayer example.

from ofximgui.

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.