flann_based is the code for pose estimation

This commit is contained in:
2023-02-21 21:00:34 +05:30
parent bad71a42d0
commit 68e3ec8ada
154 changed files with 63162 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
CXX ?= g++
CXXFLAGS += -c -Wall $(shell pkg-config --cflags opencv)
LDFLAGS += $(shell pkg-config --libs --static opencv)
all: opencv_example
opencv_example: example.o; $(CXX) $< -o $@ $(LDFLAGS)
%.o: %.cpp; $(CXX) $< -o $@ $(CXXFLAGS)
clean: ; rm -f example.o opencv_example