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.
21 lines
580 B
21 lines
580 B
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(Core.NATIVE_LIBRARY_NAME); } |
|
|
|
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); |
|
mr1.setTo(new Scalar(1)); |
|
Mat mc5 = m.col(5); |
|
mc5.setTo(new Scalar(5)); |
|
System.out.println("OpenCV Mat data:\n" + m.dump()); |
|
} |
|
|
|
}
|
|
|