Processing camera

Most unlikely to be BIOS since that would affect many applications on your computer. The problem appears to be that the JVM (Java Virtual Machine) can’t initialize the Processing sketch.

In all problems like this you need to be methodical in your approach to the problem.

As I suggested before start with an empty sketch (see below) until you get the sketch to launch then you can try and add functionality such as video. i.e.

void setup() {
  size(550,550);
}

void draw() {
  background(0);
}

Does this cause the same error.
If the answer is yes then try some or all of the following.

  1. Reinstall Processing and try again
  2. Update Java on your system if needed.
  3. Update your graphics card software.

Number 3 might seem strange but in the past I have found this can help because most applications will try to open a window. when it is launched.

As I said previously this is not my specialist area.

2 Likes