PS3Eye & Processing 2.0b8 on osx not working...
As I understood, Processing as 2.0+ version, on osx, stopped using quiktime. But macam.componente uses quiktime...Does anybody know how I can use PS3Eye Camera with Processing 2.0b8?Thanks
View ArticleRe : Mirror effect
Draw left. Use scale and translate. Draw right. End of problem.Unless the image has the width of the sketch. In this case, use get() to get half of the image. Do the steps above. End of harder problem...
View ArticleRe : Visualise Real time long CSV datatype
Do you know we cannot copy & paste data shown in images? You have textual data, paste it here as text, not as images.
View ArticleTransition between images
Hi, the code below uses rfid to load multiple images, at the moment only the 1st image shows and I don't have a way to view the rest of them. I'm looking to add a smooth transition between the images,...
View ArticleRe : Transition between images
I have, but no one has really done it with RFID before. When the RFID is place on the reader and it loads an image, all I want it to do is to fade to the next image and then the next. Unsure on how I...
View ArticleRe : Transition between images
if you don't need to control the amount of fading and images are triggered by bang, this should do what you try to achieve : click to change image. change the amount of tint(255, amount) to change the...
View ArticleRe : Transition between images
Thanks for getting back, I don't want to use the mouse to change image. When the RFID is placed on the reader I want to slideshow of images to start. I found this code below that allows the images to...
View ArticleRe : Transition between images
it was just to demonstrate a fading transition according by a trigger. haven't tested your code
View ArticleRe : Visualise Real time long CSV datatype
Also Chrisir,I am getting outcome from the values. Now if i want to only stick to one data, and make a pattern snap from, maybe a wavy line to a more straight line. So the whole idea is with the...
View ArticleRe : Visualise Real time long CSV datatype
hello,do you know map() ? It takes your value incomingValues[1] .Let's say it comes normally between 10 and 12456, and you want to show it as something between 0 and 100. Then you...
View ArticleRe : Visualise Real time long CSV datatype
no, I think map() wasn't right for youhere is a sketch with sinus (I am simulating incomingValues[1] here)//ArrayList<Ball> balls;final int ballWidth = 1; int myAttentionValue=0;float angle; ////...
View ArticleRe : Visualise Real time long CSV datatype
ok this is a more chaoswise product//ArrayList<Ball> balls;final int ballWidth = 1; int myAttentionValue=0;float angle; //// ---------------------------------------------------------------//void...
View ArticleRe : Visualise Real time long CSV datatype
chaos linewise //int myAttentionValue=0;float angle; //// ---------------------------------------------------------------//void setup(){ // init size(800, 600); frameRate(13);} // func ////void...
View ArticleRe : Visualise Real time long CSV datatype
here you can see how the crumbledness increases badly....//int myAttentionValue=0;float angle; float myAttentionValuePrev=-1000;float x=300, y=300;float dirx=.2, diry=.2;////...
View ArticleRe : Visualise Real time long CSV datatype
this shows circles the size of the attention //int myAttentionValue=0;float angle; float myAttentionValuePrev=-1000;float x=300, y=300;float dirx=+1;////...
View ArticleRe : Visualise Real time long CSV datatype
everybody likes flowersthose grow with attention and their redness increases//int myAttentionValue=0;float angle; float myAttentionValuePrev=-1000;float x=300, y=300;float dirx=+1;////...
View ArticleRe : Visualise Real time long CSV datatype
Thanks a ton. I am going to try them today.CheersN
View ArticleProcessing 2.0 Capture list gives different results
In Processing 1.5.1 I see all my cameras, but in Processing 2.08b I only see my build in webcam. I know the video implementation was changed in Processing 2.0. I would like to be able to use my PS3 Eye...
View ArticleHow to change the capture to a video file
I am looking to turn a .mov file to black and white ascii by editing the AsciiVideo file in the preset library. Currently my main struggle is simply altering the source from camera to a video file. A...
View Article