Hello, some time I installed I opencv 3.4.3 following the classic compilation procedures found on the web.
Now I should uninstall it but I noticed that the build directory is missing in the opencv directory. I cannot therefore use the command:
Most likely you will find the OpenCV stuff under "/usr/local" that is usually where "make install" will choose to install unless you have specified somewhere else during the "configure" stage. So "/usr/local/lib" "/usr/local/include/" and maybe /usr/local/bin".
If you have installed a lot of other things from source they will also be in those directories.
Have you programmed with OpenCv while it has been installed ?
if all the includes in the C code used "include <opencv/something.h>" I think its likely to assume there is a subdirectory under "/usr/local/include" where all of the files was installed. Potentially the same under "/usr/local/lib" either you find another subdirectory or you might see a list of library files that all have "cv" in their name.
I'm not able to be more specific than that, maybe someone else will be..