Giter VIP home page Giter VIP logo

Comments (3)

cansik avatar cansik commented on May 27, 2024

Hi, could you please explain a little more precisely what is not working? What have you tried, what works (example sketches?), what exactly do you want to achieve? And I also need some information about your operating system, processing version etc.

And are you sure it's the library? And if so, please create a very simple example that shows the error. Preferably with an example frame from the video, which I can also run on my system.

For example just printing some white points works and blurring them seems to work:

import ch.bildspur.postfx.builder.*;
import ch.bildspur.postfx.pass.*;
import ch.bildspur.postfx.*;

PostFX fx;

void setup() {
  size(500, 500, P3D);

  fx = new PostFX(this);
}

void draw() {
  background(55);

  // draw a rectangle
  stroke(255);
  strokeWeight(2);
  for (int y = 0; y < 100; y++) {
    for (int x = 0; x < 100; x++) {
      point((x * 4), (y * 3) + 50);
    }
  }

  fx.render()
    .bloom(0.5, 20, 30)
    .compose();
}

from processing-postfx.

lucaoskaique avatar lucaoskaique commented on May 27, 2024

Hey, @cansik , how are u, i'm sorry for the bad issue posting.

I've tried all the examples, they worked fine.

In my code i'm trying to edit a video, to make the video pixels to be 3D, this part worked, but when i use postFX thing doesn't work out.

My setup is: i5 3570, 16gb, rx570 with windows 10 build 1943 verson 21H1.

I used Processing 4, didn't had time to test with processing 3, do you think it will work better? Is build number three better for postFX?

Or am i doing something wrong forgetting something?

from processing-postfx.

cansik avatar cansik commented on May 27, 2024

Ok, if all the examples run and work it maybe has to do with the points you are drawing. Does my point-drawing example sketch work?

And would it be possible to share the sketch together with the video so I can test it on my system? You can upload a zip file here (drag into the text field), if the video content is not confidential and not too big.

from processing-postfx.

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.