mirror of https://github.com/opencv/opencv.git
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.
19 lines
431 B
19 lines
431 B
#!/usr/bin/env python |
|
import os |
|
import numpy as np |
|
import cv2 as cv |
|
|
|
from tests_common import NewOpenCVTests, unittest |
|
|
|
class tracking_test(NewOpenCVTests): |
|
|
|
def test_createTracker(self): |
|
t = cv.TrackerMIL_create() |
|
try: |
|
t = cv.TrackerGOTURN_create() |
|
except cv.error as e: |
|
pass # may fail due to missing DL model files |
|
|
|
|
|
if __name__ == '__main__': |
|
NewOpenCVTests.bootstrap()
|
|
|