I'm having trouble exporting an app bundle from Eclipse. My code has a main and init functions, and runs fine as a java application. When I try to export it, I specify the package and main class, and name of the app that I want created, but the resulting app does not contain any ressources - it is just an empty app bundle.
Do you know what can cause this? Is there anywhere a tutorial about that?
Sorry if the answer is obvious, I've been googling that for days now...
Sorry if this is something idiotic I didn't get, but I'm stuck on it for a day now. So in this (overly simplified) version of my code, I'm trying to calculate the difference between the current depth image of a kinect, and the image taken when the program started. So it goes:
public void setup() {
[lots of useless stuff]
average = createImage(640,480,RGB);
difference=createImage(640,480,RGB);
I'm displaying all of the images, but the thing is that the value of the pixels of the "average" image is ALWAYS identical to the current depth image, although the image is not changing on the display. And so the "difference" image is always null.
Do you have an idea what can be doing this? I'm not writing in the "average" image anywhere else in my code, only reading.