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.
14 lines
378 B
14 lines
378 B
import org.opencv.core.Core; |
|
import org.opencv.core.CvType; |
|
import org.opencv.core.Mat; |
|
|
|
public class Main { |
|
|
|
public static void main(String[] args) { |
|
System.out.println("Welcome to OpenCV " + Core.VERSION); |
|
System.loadLibrary(Core.NATIVE_LIBRARY_NAME); |
|
Mat m = Mat.eye(3, 3, CvType.CV_8UC1); |
|
System.out.println("m = " + m.dump()); |
|
} |
|
|
|
}
|
|
|