mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
276 B
13 lines
276 B
12 years ago
|
import org.opencv.core.CvType;
|
||
|
import org.opencv.core.Mat;
|
||
|
|
||
|
public class Main {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
System.loadLibrary("opencv_java244");
|
||
|
Mat m = Mat.eye(3, 3, CvType.CV_8UC1);
|
||
|
System.out.println("m = " + m.dump());
|
||
|
}
|
||
|
|
||
|
}
|