Re : Paint Music Application not working properly
As I wrote, you need to do blob detection. There are some Processing libraries able to do that. No idea on the algorithm they use...
View ArticleSerial.list() extremely slow
Serial.list() is extremely slow on my computer. I already know why, it's because of the Bluetooth serial ports I have. But I can't just get rid of those because I need them.I mean it takes literally...
View ArticleRe : Paint Music Application not working properly
Exactly, the sound gets played when it detects a coloured pixel but like you are suggesting to play sound for each area, how to do that? I mean detecting coloured area also needs pixel scanning.
View ArticleClient terminates Gnuplot
Hi,In my sketch I open Gnuplot to plot some data. I use the "-persist" parameter to make the plot window stay open until I stop the sketch. Strangely, if I have a network client that receives some data...
View ArticleRe : Windows 7 embedded not playing videos in Processing but OK in Windows...
Does anyone have any ideas why this wouldn't work and what I can do to make it work? Thank you.
View ArticleRe : Paint Music Application not working properly
Well, either you try to use the user actions (the easiest, probably), or you try to detect areas of color and play a sound for each area (not for each pixel!), only every n milliseconds (to let a note...
View ArticleRe : Paint Music Application not working properly
I know how they did it but I am doing this for paint application. Anyway thanks again PhiLho for the suggestions :) I would try to solve it and let you know ..
View ArticleRe : Can't save PDF: "beginRaw()/endRaw() is not available with this renderer"
It is nice to isolate the relevant code, it is nicer to make it able to be run...Anyway, when I look at the reference you link to, I see beginRaw() used only in a 3D context. Otherwise, the examples...
View ArticleRe : Can't save PDF: "beginRaw()/endRaw() is not available with this renderer"
This post here have some related issue: http://forum.processing.org/topic/making-a-pdf-file And a working code I've got here w/ me: // http://forum.processing.org/topic/pdf-export-shapes-misaligned...
View ArticleCan't save PDF: "beginRaw()/endRaw() is not available with this renderer"
Hi, I searched in the forum for someone with the same problem, but with no sucess.I need to save a frame in PDF from a animation, so I used the processing.PDF library. I writed my code based on the...
View ArticleRe : PongGame Errorcode: ArrayIndexOutOfBoundsException 1.
glad to hear................
View ArticleRe : Paint Music Application not working properly
Ah, I see what you want to do after seeing the video. But clearly, the methods uses blob detection, and sets some variables, with several sine (or other) generators, driven by the detected blobs. But...
View ArticleRe : Paint Music Application not working properly
Well, clearly, don't use the pixels array to make the sounds, but rather use the mouseDragged event and similar user events to generate them: they happen less often, so it is more usable.
View ArticleCrop a Movie
Hi,i'm trying to crop a Movie.i searched a lot on this topic but i couldnt get an anserwer hopefully someone here can help me.I have an ArrayList of Movies to switch between them. Playing the movies...
View ArticleCrazy Serial overhead sending to USB CDC Serial devices on Mac
I'm currently sending data to an Arduino Leo from Processing (Mac OS X Mountain Lion) over the Serial port. Here's the relevant snippet of code:for(int q=1;...
View ArticleRe : Paint Music Application not working properly
Oh! I am sorry PhiLho, Part 1: Blinking SoundHere is a link of similar kind of application http://vimeo.com/43306909 "also fail to see where colors can be erased or mixed in your sketch." PhiLho, I...
View ArticleRe : Is there a way to use Client.readString() propperly outside of the...
The setup() method is executed at once. You send a request and immediately try to get the answer, but it will take a while before the server answers, so the response isn't available right now.That's...
View ArticleRe : Paint Music Application not working properly
I am not a native English speaker, so I don't figure out how a sound can blink.I also fail to see where colors can be erased or mixed in your sketch.Is the sound intended to reflect the state of the...
View ArticleRe : PongGame Errorcode: ArrayIndexOutOfBoundsException 1.
okay i try this version : if (data.length >= 4) no errors anymore. i will test it these days with my main pong gamethx to you both :) im rly happy
View ArticleRe : PongGame Errorcode: ArrayIndexOutOfBoundsException 1.
Whenever something comes from an external source, be it a user input, a file, a URL, etc., always diligently parse that input whether it's in the format your code would expect it to be.That is so b/c...
View Article