diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-04-17 20:37:28 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-04-17 21:32:04 +0200 |
commit | 6def6d1568a9d710fe0f2f05b96a014ae180a506 (patch) | |
tree | e6e0ce8b2cfb57efdfd648e95fd9697eb59494cf /Makefile | |
parent | cae4b8ed522c0302dd4db994ffcf509f0a245535 (diff) | |
download | cv-6def6d1568a9d710fe0f2f05b96a014ae180a506.tar.gz cv-6def6d1568a9d710fe0f2f05b96a014ae180a506.tar.bz2 cv-6def6d1568a9d710fe0f2f05b96a014ae180a506.zip |
Add a very simple vignetting-reduction program
Its called unvignette.c.
Has no dynamic adjustment yet, and operatoes only in x-direction.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -16,7 +16,10 @@ roi_LIBS=$(shell pkg-config --libs gtk+-3.0 gdk-pixbuf-2.0 glib-2.0) capture_CFLAGS=$(shell pkg-config --cflags gtk+-3.0 opencv glib-2.0) capture_LIBS=$(shell pkg-config --libs gtk+-3.0 opencv glib-2.0) -PROGS = wimmel wimmel_gl roi capture +unvignette_CFLAGS=$(shell pkg-config --cflags cairo) +unvignette_LIBS=$(shell pkg-config --libs cairo) -lm + +PROGS = wimmel wimmel_gl roi capture unvignette OBJS = $(PROGS:=.o) util.o all: $(PROGS) @@ -25,6 +28,7 @@ wimmel: wimmel.o util.o wimmel_gl: wimmel_gl.o util.o roi: roi.o capture: capture.o +unvignette: unvignette.o .PHONY: clean all |