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:
@@ -6,5 +6,5 @@ ocv_define_module(
|
||||
opencv_imgproc
|
||||
opencv_dnn
|
||||
OPTIONAL opencv_quality
|
||||
WRAP python
|
||||
)
|
||||
WRAP python java
|
||||
)
|
||||
|
14
modules/dnn_superres/misc/java/test/DnnSuperresTest.java
Normal file
14
modules/dnn_superres/misc/java/test/DnnSuperresTest.java
Normal 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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user