mirror of
https://github.com/bspeice/libcvautomation
synced 2025-09-03 05:05:40 -04:00
CVAM: Add the initial program based on the reference.
Original program can be found here: http://nashruddin.com/template-matching-in-opencv-with-example.html
This commit is contained in:
16
Makefile
Normal file
16
Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
all: cva-match
|
||||
|
||||
debug: cva-match-debug
|
||||
gcc cva-match.o `pkg-config --libs opencv` -o cva-match
|
||||
|
||||
cva-match: cva-match.o
|
||||
gcc cva-match.o `pkg-config --libs opencv` -o cva-match
|
||||
|
||||
cva-match-debug: cva-match-debug.o
|
||||
gcc cva-match.c -DDEBUG `pkg-config --cflags opencv` -c -o cva-match.o
|
||||
|
||||
cva-match.o:
|
||||
gcc cva-match.c `pkg-config --cflags opencv` -c -o cva-match.o
|
||||
|
||||
clean:
|
||||
rm *.o cva-match
|
Reference in New Issue
Block a user