Hi everybody,
namtes
I am trying to make an applet with JMyron but I want to change
the values
(int w and int h) from the size.
I want an incremente for this two values but I have an error in the image of the video.
How can I do that?
Thanks u
import JMyron.*;
JMyron m;
void setup(){
int w = 320; ///////
I want 700
int h = 240; ///////
I watn 600
size(w,h);
m = new JMyron();
m.start(320,240);
m.findGlobs(1);
println("Myron " + m.version());
}
namtes
1