Hello there,
I started diving into visual bag of words classification. There is very good sample code in samples/cpp folder. I tried compile it with pkg-config opencv --libs --cflags
flag and everything worked fine. Currently I am using whole opencv library. There are quite lot of files which are needed to compile executable binary. Is it possible to parse only those files which are needed in BoW project? For example I am not interested files which are relating face recognition, and so on.. I just try to do a project a minimal number of files and that way to do code more controllable and total project size much smaller. At that moment I am using Linux dynamic library. Is it possible compile project using static library?
Cheers!