我在ubuntu上有一些opencv c ++代码,其文件夹结构为:
|-- bin
| |-- camera-calib.o
| `-- frontalize.o
|-- docs
| `-- notes.md
|-- LICENSE.md
|-- Makefile
|-- README.md
|-- shape_predictor_68_face_landmarks.dat
`-- src
|-- calib
| |-- calib.cpp
| |-- calib.h
| |-- POSIT.cpp
| |-- POSIT.h
| |-- pro
| | |-- calib.o
| | |-- Makefile
| | |-- POSIT.o
| | |-- pro
| | |-- pro.pro
| | |-- pro.pro~
| | `-- util.o
| `-- util
| |-- calib_util.cpp
| `-- calib_util.h
|-- camera-calib.cpp
|-- camera-calib.h
|-- check_resources.h
|-- fatialfeaturedetect.cpp
|-- frontalization-models
| |-- DataAlign2LFWa.mat
| |-- eyemask.mat
| `-- model3Ddlib.mat
|-- frontalize.cpp
|-- frontalize.h
`-- main.cpp
我使用的Makefile是:
EXE = face_frontalization
OBJ_DIR = bin
CFLAGS = -g -w
dummy_build_folder := $(shell mkdir -p $(OBJ_DIR))
# c++ source files of the project
CXXFILES = $(shell find src -maxdepth 3 -type f -name '*.cpp')
CXXOBJ = $(patsubst src/%.cpp,bin/%.o,$(CXXFILES))
INCLUDE = -I/usr/include/dlib-18.18
LIBS = `pkg-config --libs opencv`
CXXFLAGS = `pkg-config --cflags opencv` -w -Wall -Wextra -g -std=c++0x
CFLAGS = `pkg-config --cflags opencv` -g -w
ifdef V
MUTE =
VTAG = -v
else
MUTE = @
endif
all: $(EXE)
# build successful
$(EXE): $(CXXOBJ)
$(CXX) $(CXXOBJ) -o $(EXE) $(LIBS)
$(OBJ_DIR)/%.o: src/%.cpp
$(CXX) $(CXXFLAGS) $(INCLUDE) $< -c -o $@
$(BUILD)
$(OBJ_DIR)/%.o: src/%.c
$(CC) $(CFLAGS) $(INCLUDE) $< -c -o $@
run: all
./$(EXE)
clean:
# Cleaning...
-rm -f $(EXE) $(CXXOBJ)
rmdir bin/
现在我收到了这个错误:
6 of 7
g++ `pkg-config --cflags opencv` -w -Wall -Wextra -g -std=c++0x -I/usr/include/dlib-18.18 src/calib/util/calib_util.cpp -c -o bin/calib/util/calib_util.o
Assembler messages:
Fatal error: can't create bin/calib/util/calib_util.o: No such file or directory
make: *** [bin/calib/util/calib_util.o] Error 1
我还没有得到这个错误,所以不知道它为什么会出现。该文件存在于目录中。我该怎么办呢?
答案 0 :(得分:1)
您的目录结构看起来有些偏差。
无法创建bin / calib / util / calib_util.o:没有这样的文件或目录
根据您的层次结构,您在calib/util
下没有目录bin
。尝试创建它并再次运行make
。