Ask Your Question

Derek's profile - activity

2020-11-14 08:11:05 -0600 received badge  Famous Question (source)
2020-11-14 08:11:05 -0600 received badge  Notable Question (source)
2020-11-14 08:11:05 -0600 received badge  Popular Question (source)
2013-04-29 11:37:44 -0600 commented answer the Mat problem

thank you for your opinion. I will study it.

2013-04-27 09:49:01 -0600 commented answer the Mat problem

I have tried to use the method that you said. when I use Mat m=new Mat(image_path) instead of Mat m=new Mat(), the eclipse doesn't show the message of Source not found. Mat m = new Mat() is a legal line, but why can not work normally?

2013-04-26 07:53:07 -0600 commented question the Mat problem

no, there is any error after compiling. if there was an error, the eclipse would not enter the debug mode and the simulator of the phone.

2013-04-25 07:45:51 -0600 asked a question the Mat problem

Hi OpenCV team,

I have added the OpenCV(V 2.4.5) in the eclipse and the program compiles normally. When eclipse executes the following line the program pointer of eclipse enters the constructor of Mat class.

(Mat m = new Mat());

and then eclipse shows the message of Source not found and enters InvocationTargetException.class,after leaving the constructor of Mat class.

Do I miss some parameter to be set?

Please help me, thank you.

2013-04-24 14:08:54 -0600 received badge  Student (source)
2013-04-24 11:36:06 -0600 asked a question Can't setup IDE for Android debugging

Hi OpenCV team.

I have added the OpenCV V2.4.5(for Android), and it is OK to compile the program. When the program pointer is on the line

Mat mat = new Mat()

and I click the button of Next step, the program pointer will enter the constructor of Mat in Mat.class. After leaving the constructor, the program pointer does not get back to the original function which calls the constructor of Mat. It enter the InvocationTargetException.class and show the message of Source not found. I have set the path of Mat.java file, but it does not work.

Do I miss some parameter settings for OpenCV?