| BOWImgDescriptorExtractor Constructor (Feature2D, DescriptorMatcher) | 
        
         
            The constructor.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic BOWImgDescriptorExtractor(
	Feature2D dextractor,
	DescriptorMatcher dmatcher
)
Public Sub New ( 
	dextractor As Feature2D,
	dmatcher As DescriptorMatcher
)
public:
BOWImgDescriptorExtractor(
	Feature2D^ dextractor, 
	DescriptorMatcher^ dmatcher
)
new : 
        dextractor : Feature2D * 
        dmatcher : DescriptorMatcher -> BOWImgDescriptorExtractorOpenCvSharp.BOWImgDescriptorExtractor = function(dextractor, dmatcher);
Parameters
- dextractor
- Type: OpenCvSharpFeature2D
 Descriptor extractor that is used to compute descriptors for an input image and its keypoints.
- dmatcher
- Type: OpenCvSharpDescriptorMatcher
 Descriptor matcher that is used to find the nearest word of the trained vocabulary for each keypoint descriptor of the image.
 See Also
See Also