Merge pull request #3533 from asmorkalov:as/dnn_superres_java
Added Java bindings for dnn_superres modulepull/3538/head^2
commit
daaf645151
2 changed files with 16 additions and 2 deletions
@ -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(); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue