In my app I got NullPointerException
in the line:
Mat edges = new Mat();
I debug it, and come to here:
public Mat() {
nativeObj = n_Mat();
return;
}
On line of nativeObj = n_Mat();
this . And got NullPointerException
. So can anyone help to resolve it?
Thanks in advance