You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
Thanks for the great work in Accord.NET! It make everything sound possible :)
I m currently trying to apply object recognition using HOG with Bag of Visual Words and classifier by SVM or OSVM. However, it seem the HOG could not work with the BoW'2 class. For instance,
var kmodes = new KModes(numberOfWords, new Hamming());
var detector = new HistogramsOfOrientedGradients(9, 3, 6);
var hogBow = new BagOfVisualWords<FeatureDescriptor, double[]>(detector, kmodes);
hogBow.Compute(TrainImages.Values.ToArray());
Could anyone assist on this case? Thanks in advance.