1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 23:01:45 +08:00
Files
opencv_contrib/modules/xfeatures2d/misc/python/test/test_descriptors.py
2022-09-23 11:48:49 +02:00

25 lines
488 B
Python

#!/usr/bin/env python
# Python 2/3 compatibility
from __future__ import print_function
import os
import numpy as np
import cv2 as cv
from tests_common import NewOpenCVTests
class MSDDetector_test(NewOpenCVTests):
def test_create(self):
msd = cv.xfeatures2d.MSDDetector_create()
self.assertFalse(msd is None)
img1 = np.zeros((100, 100, 3), dtype=np.uint8)
kp1_ = msd.detect(img1, None)
if __name__ == '__main__':
NewOpenCVTests.bootstrap()