简体   繁体   中英

OpenCV Makefile Error

I am new to OpenCV. I was trying to run the code in the link below on Ubuntu.

Particle Tracker

I did as they said in the README file but I could not get it work.

I get the errors in the link below when I typed make in the console.

Errors

What am I doing wrong?

Thanks.

Edit: I have OpenCV installed.

As requested, here is the makefile that worked on my system. Remember that you have to configure your build environment to find the shared libraries (eg, either through ldconfig or LD_LIBRARY_PATH).

CFLAGS = -O2 -Wall
LIBS = -lopencv_core -lopencv_imgproc -lopencv_highgui
SRCS = main.cpp condens.cpp lbp.cpp selector.cpp filter.cpp hist.cpp
HEADERS =  condens.h lbp.h selector.h filter.h state.h hist.h

particle_tracker: $(SRCS) $(HEADERS)
        g++ $(CFLAGS) -o particle_tracker $(SRCS) $(LIBS)

.PHONY clean:
        rm -f particle_tracker particle_tracker.exe

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM