Camera error on Android
in
Android Processing
•
4 months ago
Hello Everybody, I am new in Processing.
I try to use the Capture example from here:
http://processing.org/reference/libraries/video/Capture.html
and upload the program to Galaxy Tab.
I have this error message:
> Caused by: java.lang.NoSuchFieldError: processing.core.PApplet.platform
> at processing.video.Capture.<clinit>(Unknown Source)
After I tried to minimize the program, like this
import processing.video.*;
Capture cam;
void setup() {
size(640, 480);
String[] cameras = Capture.list();
}
But I received the same error message.
Can anybody help me, what is wrong ???
Thanks.
I try to use the Capture example from here:
http://processing.org/reference/libraries/video/Capture.html
and upload the program to Galaxy Tab.
I have this error message:
> Caused by: java.lang.NoSuchFieldError: processing.core.PApplet.platform
> at processing.video.Capture.<clinit>(Unknown Source)
After I tried to minimize the program, like this
import processing.video.*;
Capture cam;
void setup() {
size(640, 480);
String[] cameras = Capture.list();
}
But I received the same error message.
Can anybody help me, what is wrong ???
Thanks.
1