diff --git a/openbr/plugins/algorithms.cpp b/openbr/plugins/algorithms.cpp index 74830f3..d78563b 100644 --- a/openbr/plugins/algorithms.cpp +++ b/openbr/plugins/algorithms.cpp @@ -52,7 +52,7 @@ class AlgorithmsInitializer : public Initializer Globals->abbreviations.insert("BoVW", "Flatten+CatRows+KMeans(500)+Hist(500)"); Globals->abbreviations.insert("HOF", "Stream([KeyPointDetector(SIFT),AggregateFrames(2)+OpticalFlow,ROI,HoGDescriptor])+BoVW"); Globals->abbreviations.insert("HoG", "Stream([KeyPointDetector(SIFT),ROI,HoGDescriptor])+BoVW"); - Globals->abbreviations.insert("HoGHOF", "Stream([KeyPointDetector(SIFT),(AggregateFrames(2)+OpticalFlow+ROI+HoGDescriptor)/(ROI+HoGDescriptor),Cat])+BoVW"); + Globals->abbreviations.insert("HoGHOF", "Stream([KeyPointDetector(SIFT),AggregateFrames(2),(OpticalFlow+ROI+HoGDescriptor)/(First+ROI+HoGDescriptor),Cat])+BoVW"); // Generic Image Processing Globals->abbreviations.insert("SIFT", "Open+KeyPointDetector(SIFT)+KeyPointDescriptor(SIFT):KeyPointMatcher(BruteForce)");