BOWImgDescriptorExtractor Constructor |
http://www.emgu.com
Create a BOWImgDescriptorExtractor
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic BOWImgDescriptorExtractor(
Feature2D descriptorExtractor,
DescriptorMatcher descriptorMatcher
)
Public Sub New (
descriptorExtractor As Feature2D,
descriptorMatcher As DescriptorMatcher
)
public:
BOWImgDescriptorExtractor(
Feature2D^ descriptorExtractor,
DescriptorMatcher^ descriptorMatcher
)
new :
descriptorExtractor : Feature2D *
descriptorMatcher : DescriptorMatcher -> BOWImgDescriptorExtractor
Parameters
- descriptorExtractor
- Type: Emgu.CV.Features2DFeature2D
Descriptor extractor that is used to compute descriptors for an input image and its key points. - descriptorMatcher
- Type: Emgu.CV.Features2DDescriptorMatcher
Descriptor matcher that is used to find the nearest word of the trained vocabulary for each key point descriptor of the image.
See Also