1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-18 17:24:28 +08:00

Added Java bindings for dnn_superres module.

This commit is contained in:
Alexander Smorkalov
2023-07-17 12:26:44 +03:00
parent d89b2b9bd8
commit 0fe30d84d0
2 changed files with 16 additions and 2 deletions

View File

@@ -6,5 +6,5 @@ ocv_define_module(
opencv_imgproc
opencv_dnn
OPTIONAL opencv_quality
WRAP python
)
WRAP python java
)

View File

@@ -0,0 +1,14 @@
package org.opencv.test.tracking;
import org.opencv.core.Core;
import org.opencv.core.CvException;
import org.opencv.test.OpenCVTestCase;
import org.opencv.dnn_superres.DnnSuperResImpl;
public class DnnSuperresTest extends OpenCVTestCase {
public void testCreateSuperres() {
DnnSuperResImpl sr = DnnSuperResImpl.create();
}
}