First commit

This commit is contained in:
2015-10-23 14:44:48 -04:30
commit 33fc351855
11 changed files with 877 additions and 0 deletions

14
OpencvTest/Makefile Executable file
View File

@@ -0,0 +1,14 @@
TARGET = OCVTest
OBJECTS = main.o marker.o decode.o calib.o
CXXFLAGS = `pkg-config --cflags opencv` -O3 -DDESKTOP
LDLIBS = `pkg-config --libs opencv`
all: $(TARGET)
$(TARGET): $(OBJECTS)
g++ -o $(TARGET) $(OBJECTS) $(CXXFLAGS) $(LDLIBS)
%o: %cpp
clean:
$(RM) $(TARGET) $(OBJECTS)