Class BOWImgDescriptorExtractor

java.lang.Object
org.opencv.features2d.BOWImgDescriptorExtractor

public class BOWImgDescriptorExtractor
extends Object
Class to compute an image descriptor using the *bag of visual words*. Such a computation consists of the following steps: 1. Compute descriptors for a given image and its keypoints set. 2. Find the nearest visual words from the vocabulary for each keypoint descriptor. 3. Compute the bag-of-words image descriptor as is a normalized histogram of vocabulary words encountered in the image. The i-th bin of the histogram is a frequency of i-th word of the vocabulary in the given image.