mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 04:25:42 +08:00
15 lines
346 B
Java
15 lines
346 B
Java
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();
|
|
}
|
|
|
|
}
|