Re : Processing 2 and image performing as GLTexture
Dunno! What I heard of is that Processing 2+ uses a more update OpenGL version!
View ArticleRe : Please help to change the existing coding so that it visualises colour
I was playing with your code Chrisir some time ago and have to say that it's pretty nice.I also don't have an idea of what exactly track.left.get(i) is doing (which is part of the problem), but what...
View ArticleMinim AudioSample -> loadSample from millis to millis
Hi there!is there any possibility to load a specified timeperiod (e.g. 4500millis to 5889millis) into a sample?kind of:sample = minim.loadSample("longSong.mp3", 512, 4500, 5889);or is it possible to...
View ArticleMinim .get() never gets two times the same result when you run again the...
I don`t know exactly what track.left.get(i) and track.right.get(i) are doing, but what I'm sure is that they don't always get the same result when you run the application multiple times.Actually, if...
View ArticleVideos with alpha mask() sync problem
I'm writing a processing sketch displaying multiple videos with 'transparent' background, by masking the RGB-layer with it's own Alpha layer, like this: rgbmovie.mask(alphamovie);...
View ArticleRe : Videos with alpha mask() sync problem
It seems easier to just put the alpha channel in the same movie as the rgb channels.See this thread: https://forum.processing.org/topic/gsvideo-with-alpha-channel
View ArticleRe : Processing 2.0 video alpha channel
Hi everyone!Same problem with getting your code running, Akiersky. Rendered the *.mov with RGB+ALPHA properties and Animation as you suggested. import processing.opengl.*; import...
View ArticleRe : Videos with alpha mask() sync problem
Thanks for the quick response Amnon.owed!Had a look at this thread before, but I don't seem to get Akiersky's code working.Nevertheless, I managed to get the layers synced up with a different method....
View ArticleRe : Visualise Real time long CSV datatype
Here`s the CSV data:The package EEG data i am getting in the Serial Monitor is as follows: "signal strength, attention, meditation, delta, theta, low alpha, high alpha, low beta, high beta, low gamma,...
View ArticleRe : sending data with processing
I just realised, that when I have more than 5 values in the string the code is not working properly. Perhaps, Arduino does not like more than a certain number of bits incoming in one string, however, I...
View ArticleRe : Minim cannot find BufferedAudio
The import with * should have referenced the class as well.Perhaps you are using the API of the new Minim library, not the one shipped with Processing.
View ArticleRe : Mirror effect
Hi GoToLoop.Thanks for your reply. But your way (using scale and translate )doesn't work to me. I want to mirror left to right, not entire image. Any idea??
View ArticleRe : Visualise Real time long CSV datatype
you want to let it look like this? http://kb4brainfunction.com/wp-content/uploads/2013/01/eeg_2.gif
View ArticleRe : Visualise Real time long CSV datatype
Yes, one way is that but main intention is to draw inspiration from cellular automata or noise and make the visual more abstract. More like:Only if i could get how to loop each line of strings. Plz...
View ArticleRe : Visualise Real time long CSV datatype
Only if i could get how to loop each line of strings. At the end of function serialEvent I see int newValue = Integer.parseInt(incomingValues[i].trim());here you have a for-loop that goes through...
View ArticleRe : Visualise Real time long CSV datatype
Yes i am getting newValue, the same as incomingValues:So, now i can modify this newValue? How?
View ArticleRe : Visualise Real time long CSV datatype
So, one last question, i am able to draw visuals, with this following command:ellipse(400,300, newValue/10000, newValue/10000);But i want each value to define a pattern, so should i make an array of it...
View ArticleRe : Visualise Real time long CSV datatype
I think it's ok to divide by 10000You can also sayellipse(xValue, newValue/10000, 3,4);xValue++;that would give you a linear graph to the right.
View ArticleRe : Visualise Real time long CSV datatype
sorry I don't really know how to use your values for patterns. maybe research here:...
View ArticleRe : Minim cannot find BufferedAudio
Thanks PhiLho, I thought maybe I was importing an older version previously installed (before it was included as a core library) but it is not installed in my library folder - is that what you...
View Article