Re : GLSL shader help
Hmm... Found a similar error message on Processing github issues list here.What version of Processing are you using?What happens when you run the opengl examples included with Processing?
View ArticleRe : GLSL shader help
Im using Processing 2.0b8, I can run all the examples included in the Processing distro including all of the shader examples and others which are more graphics intensive. I've also tested the code you...
View ArticleRe : help with minim & P3D
since nobody answers, let me make a commentI don't have serial and so on, but afaik you can just call perspective(); to use the standard perspective.Both perspectives seem to work parallel within...
View ArticleRe : SOLVED - Blend video cam with background image
Hello.Can you send me the file "BlendDifference.xml" please?
View ArticleRe : GLSL shader help
Perhaps. I tested the code on WinXP.Maybe you can create the smallest possible example that shows this behavior, then file an issue on github.
View ArticleRe : Changing which video is playing on button press
I made an mp3-player you can see how to make buttons to make the sketch faster: load all movies in setup()when a button is pressed just change which one is playing without loading it...
View ArticleRe : SOLVED - Blend video cam with background image
<filter name="Difference"> <description>Difference Blend Mode</description> <fragment>BlendDifference.glsl</fragment> <textures input="2" output="1">...
View Articlesimple IPimage to PDF doesn't work
Hi all,I'm testing out a code snippet which is to be integrated into a big sketch. I just want to test the image quality of the image inside a pdf. It will later be combined with vector output. Here's...
View Articlelibraries must be installed in a folder named 'libraries' inside the...
No library found for com.googlecode.javacvNo library found for com.googlecode.javacv.cppNo library found for monclubelec.javacvProAs of release 1.0, libraries must be installed in a folder named...
View ArticleRe : libraries must be installed in a folder named 'libraries' inside the...
Sketchbook is the default folder which shows up when you 1st save a program of yours.Inside that folder, create a subfolder named libraries.Within it, you can install other subfolders from 3rd-party...
View ArticleRe : libraries must be installed in a folder named 'libraries' inside the...
ok, im gonna go direct.. im trying this "you are Einstein" code i downloaded but i have many problem with it.. do u can run the "you are einstein" code?
View ArticleRe : libraries must be installed in a folder named 'libraries' inside the...
this is my link for the libraries libraries>document>Processing>libraries>OpenCv is this right?
View ArticleRe : libraries must be installed in a folder named 'libraries' inside the...
Go in Files -> Preferences. Sketchbook location points to the path of your sketchbook folder.There has to be a subfolder called libraries inside that!It's where you install your 3rd-party libraries!
View ArticleRe : libraries must be installed in a folder named 'libraries' inside the...
i did the same, coz im using 1.5.1 it only create the processing folder on document, and i created subfolders of 'libraries' to contain subfolder like fullscreen, and openCV.. am i doing it right?...
View ArticleRe : Flipping Webcam Explanation Please!!
I don't understand how those things work either!But I believe that after a scale(-1, 1); the math necessary to place an exact mirror of an image is:image(img, - (originalX + img.width), 0);In your...
View ArticleRe : simple IPimage to PDF doesn't work
Hi all,As an alternative I tried saving as a tiff. But even that doesn't work. The simple code below just saves a black image.:PImage img;PGraphics t;void setup(){ size(500, 375); t =...
View Articlehow to get processing on Linux to communicate via rfcomm
Hi,I'm looking for a way to get a Processing script to read and write on /dev/rfcomm port (bluetooth). It is simply a serial protocol but the following code fails:import processing.serial.*;Serial...
View ArticleRe : GLSL shader help
From my experience, shaders working on nvidia cards do not always work on AMD cards . Anyway, when that happens, I don't get any error, so maybe your problem is something else... Sorry, little help.
View ArticleRe : image transparency with minim
You can use tint() to change the transparency of images.See: http://processing.org/reference/tint_.html
View Article