(method)
| 17 | return cv2.FeatureDetector_create(method) |
| 18 | |
| 19 | def DescriptorExtractor_create(method): |
| 20 | method = method.upper() |
| 21 | if method == "ROOTSIFT": |
| 22 | return RootSIFT() |
| 23 | return cv2.DescriptorExtractor_create(method) |
| 24 | |
| 25 | def DescriptorMatcher_create(method): |
| 26 | return cv2.DescriptorMatcher_create(method) |
no test coverage detected
searching dependent graphs…