how to set java library path for processing

后端 未结 4 1928
广开言路
广开言路 2020-12-03 01:35

I\'m using PDE to run a Processing sketch, and I get the following error:

Verify that the java.library.path property is correctly

4条回答
  •  难免孤独
    2020-12-03 02:04

    In Eclipse, I did this to get OpenCV working:

    1. In the Run menu, select Run Configuration.
    2. Go to the (x)=Arguments tab of your sketch.
    3. Add this in the VM arguments field:

      -Djava.library.path="/path/to/OpenCV/library"
      

提交回复
热议问题