I'm trying to use vlfeat kmeans algorithm in C++ as I have used it before in matlab. I have two questions.
- I can't find a function to return the assignment for each data input. do I have to use the distance function to manually find the assignment?
- when I set
vl_kmeans_set_verbosity(kmeans, 1);
I do not see any verbosity being printed out. how do I get the verbosity to work?