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.
24 lines
573 B
24 lines
573 B
7 years ago
|
#!/usr/bin/env python
|
||
|
from __future__ import print_function
|
||
|
|
||
|
import numpy as np
|
||
|
import cv2
|
||
|
|
||
|
from tests_common import NewOpenCVTests
|
||
|
|
||
|
class Bindings(NewOpenCVTests):
|
||
|
|
||
|
def test_inheritance(self):
|
||
|
bm = cv2.StereoBM_create()
|
||
|
bm.getPreFilterCap() # from StereoBM
|
||
|
bm.getBlockSize() # from SteroMatcher
|
||
|
|
||
|
boost = cv2.ml.Boost_create()
|
||
|
boost.getBoostType() # from ml::Boost
|
||
|
boost.getMaxDepth() # from ml::DTrees
|
||
|
boost.isClassifier() # from ml::StatModel
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
import unittest
|
||
|
unittest.main()
|