From 59e2caae78dfab3fa2afb8aa63572b70cf6b94e7 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 26 Apr 2012 05:46:04 +0200 Subject: Add harris detector --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0e7e3a5..45ce1bf 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,10 @@ cvg_LIBS=$(shell pkg-config --libs gtk+-3.0 glib-2.0 gmodule-2.0 opencv) hst_CFLAGS=$(shell pkg-config --cflags gdk-pixbuf-2.0 glib-2.0) hst_LIBS=$(shell pkg-config --libs gdk-pixbuf-2.0 glib-2.0) -PROGS = wimmel wimmel_gl roi capture unvignette cvg hst +harris_CFLAGS=$(shell pkg-config --cflags gdk-pixbuf-2.0 glib-2.0) +harris_LIBS=$(shell pkg-config --libs gdk-pixbuf-2.0 glib-2.0) + +PROGS = wimmel wimmel_gl roi capture unvignette cvg hst harris OBJS = $(PROGS:=.o) util.o all: $(PROGS) @@ -37,6 +40,7 @@ capture: capture.o unvignette: unvignette.o cvg: cvg.o hst: hst.o +harris: harris.o .PHONY: clean all -- cgit