MCPcopy Create free account
hub / github.com/PyImageSearch/imutils / DescriptorExtractor_create

Function DescriptorExtractor_create

imutils/feature/factories.py:19–23  ·  view source on GitHub ↗
(method)

Source from the content-addressed store, hash-verified

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)

Callers 1

feature_demo.pyFile · 0.90

Calls 1

RootSIFTClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…