updating samples to load JNI lib with correct suffix

This commit is contained in:
Andrey Pavlenko
2013-02-28 16:24:52 +04:00
parent 5321da92cb
commit 29b763dc60
3 changed files with 10 additions and 3 deletions

View File

@@ -1,12 +1,14 @@
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.CvType;
import org.opencv.core.Scalar;
class SimpleSample {
static{ System.loadLibrary("opencv_java244"); }
static{ System.loadLibrary("opencv_java" + Core.VERSION_SUFFIX); }
public static void main(String[] args) {
System.out.println("Welcome to OpenCV " + Core.VERSION);
Mat m = new Mat(5, 10, CvType.CV_8UC1, new Scalar(0));
System.out.println("OpenCV Mat: " + m);
Mat mr1 = m.row(1);