Re : Frame-differencing on a Movie (file) instead of Capture
No tip on how to do framedifferencing on a movie?
View ArticleRe : Frame-differencing on a Movie (file) instead of Capture
I rarely, if ever, use the video library, but I experimented a bit.In addition to the changes you described (and pointing to a movie file on my computer), I made two changes:- Set the size of the...
View ArticleRe : How to get the GL and GLU in P2.0 b3
Using this now... pgl = (PGraphicsOpenGL) g; gl = g.beginPGL().gl.getGL2(); glu = new GLUgl2();
View Articleupdating text
Hi, new to processing and this might seem obvious but how do i update text? the examples i've seen don't seem to work and involve a kludge of drawing over the text with a rectangle (surely this isn't...
View ArticleRe : updating text
This should be in red, blinking letters in the first page of the Processing tutorial (unless it is there already): unless you make a specific, cumulative kind of sketch, always start your draw()...
View ArticleRe : updating text
the behavour i see is like a new line being printed with the text appearing under the last text line, not over the top of each other?
View ArticleVideo list array, out of memory
Hi,I'm working on a video playlist application which i can control with my mobile over internet.My code work fine but after playing 7 videos, the application say to me that she don't want to play more...
View ArticleRe : updating text
I dont't have serial but this is the idea when you want the last entry on top of a list:you store the serial data in temp (line 16) and after the while loop you place temp with a line break \n in front...
View ArticleRe : updating text
doesn't processing allow some kind of separation of the formatting and code though? why do i need a loop to create new text in the same place as old text?
View ArticleRe : Video list array, out of memory
Just a wild guess:Have you tried using movie.finish(); as well?
View ArticleRe : Video list array, out of memory
nope..but when i'm trying this, it does not recognize the command :"The function finish() does not exist"
View ArticleRe : updating text
"the behavour i see is like a new line being printed with the text appearing under the last text line, not over the top of each other?"Uh? It looks like you are always displaying the text at the same...
View ArticleRe : updating text
When you only want to see the last line / temp var (in my code), show it via text() and don't use val. That works together with background(). You can also choose a font and a fontsize and a color for...
View ArticleRe : frameRate() can crash 2.0b7
I'm seeing a larger problem with regard to the crash reported here. If you have a similar sketch and do a resize, it crashes as well. They seem to be fixed by resetting the gl in the draw. gl =...
View ArticleRe : updating text
I know why my example wasn't working, I declared val as a global and each iteration of draw() was appending to the variable.doh!!!
View ArticlePLEASE HELP!!! Serial Error
This is the code I worked on over summer and it worked perfectly fine. Now I after a few months, it magically doesn't want to work anymore. The following is my ARDUINO code:int ledPin;int ledPin13 =...
View ArticleRe : PLEASE HELP!!! Serial Error
It is often better to show a non-truncated version of the error message. I guess it tells ArrayIndexOutOfBounds... This means that Arduino.list() returns an empty list. Perhaps your device is no longer...
View Article