We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpIntegration › LibCV library and core package
Page Index Toggle Pages: 1
LibCV library and core package (Read 1471 times)
LibCV library and core package
Sep 6th, 2007, 9:56am
 
Hi,
This my first post in this forum:))
How can I integrate processing.core package and LibCV library with my java application. It says:
"package processing.core does not exist"

I installed jdk1.6.0_02 and netbeans on my machine.
Thanks in advance.

--
Harun
Re: LibCV library and core package
Reply #1 - Sep 6th, 2007, 10:53am
 
package means that the java-file which has this statement belongs to that package. you need import:

import processing.core.*; // import anything from the processing-core

F
Re: LibCV library and core package
Reply #2 - Sep 6th, 2007, 10:57am
 
I wrote the same line but it says :
package processing.core does not exist
import processing.core.*;
^
Re: LibCV library and core package
Reply #3 - Sep 6th, 2007, 11:04am
 
In netbeans you need to right click on "Libraries" in your Project, then "Add JAR/Folder" and add processing-0125/lib/core.jar before you can import things from it.
Re: LibCV library and core package
Reply #4 - Sep 6th, 2007, 11:15am
 
Thanks I got it:))
Page Index Toggle Pages: 1