Ask Your Question

om201's profile - activity

2012-09-25 05:58:01 -0600 received badge  Student (source)
2012-09-24 06:57:56 -0600 asked a question 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