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
building this on ubuntu is pretty easy, but it took several tries to figure it out, so here are the instructions. i don't have a camera on my desktop (i'll test it on my laptop next week maybe)
other linux should be similar, just replace apt install as appropriate
On 17.10 I was successful only after adding libcblas-dev (apt) and then invoking a compiler like this: clang++ -std=c++1y $(pkg-config --cflags --libs opencv lapack) -ldlib -lblas *.cpp
Had issue with building on ubuntu 16.04(with linking). This worked out for me g++ $(pkg-config --cflags) *.cpp $(pkg-config --libs opencv lapack) -ldlib -lblas -std=c++1y -o final
building this on ubuntu is pretty easy, but it took several tries to figure it out, so here are the instructions. i don't have a camera on my desktop (i'll test it on my laptop next week maybe)
other linux should be similar, just replace
apt install
as appropriatecould you add these instructions to the readme ?
The text was updated successfully, but these errors were encountered: