OpenCvSharp.BOWImgDescriptorExtractor.BOWImgDescriptorExtractor C# (CSharp) Method

BOWImgDescriptorExtractor() public method

The constructor.
public BOWImgDescriptorExtractor ( DescriptorMatcher dmatcher ) : System
dmatcher DescriptorMatcher Descriptor matcher that is used to find the nearest word of the trained vocabulary for each keypoint descriptor of the image.
return System
        public BOWImgDescriptorExtractor(DescriptorMatcher dmatcher)
        {
            if (dmatcher == null)
                throw new ArgumentNullException(nameof(dmatcher));
            ptr = NativeMethods.features2d_BOWImgDescriptorExtractor_new2(dmatcher.PtrObj);
        }

Same methods

BOWImgDescriptorExtractor::BOWImgDescriptorExtractor ( Feature2D dextractor, DescriptorMatcher dmatcher ) : System