makefile opencv的案例
Posted buyizhiyou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了makefile opencv的案例相关的知识,希望对你有一定的参考价值。
1 CXX = g++ 2 LIBS +=`pkg-config --libs opencv` 3 INC +=`pkg-config --cflags opencv` 4 CPPFLAGS += -g -std=c++11 -Wall 5 6 SRCS = detect.cpp 7 TARGET = detect 8 OBJS = detect.o 9 10 $(TARGET):$(OBJS) 11 $(CXX) $(INC) $(CPPFLAGS) $(OBJS) -o $(TARGET) $(LIBS) 12 $(OBJS):%.o:%.cpp 13 $(CXX) $(INC) $(CPPFLAGS) -c $< -o [email protected] 14 15 .PHONY:clean 16 clean: 17 rm -r *.o $(TARGET)
以上是关于makefile opencv的案例的主要内容,如果未能解决你的问题,请参考以下文章
在ubuntu中用cuda编译opencv的makefile停止工作
在 Python 多处理进程中运行较慢的 OpenCV 代码片段