Running the OpenCV4Android application on my PC
Hi,
I built an Android project containing OpenCV. It runs fine on my Android machine. But now I would like to add a regular java class (non android) to my project and run it on my PC.
Problem is - if i try to instantiate any OpenCV object and run this on my PC it has all sorts of compilation problems. For example: I tried
public static void main(Strin args[]) {
Mat a = new Mat();
}
Is this even possible to do this? If so, how? Thanks, Ofri