-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.config.manyfeat
141 lines (121 loc) · 6.4 KB
/
Makefile.config.manyfeat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# this is a configuration, where many of the optional libraries are enabled
#
# this configuration assumes lapack/atlas and fftw (2.1.X) installed through macports in /opt/local/
#
# compile using
#
# CONFIG=manyfeat make
#----------------------------------------------------------------------
# configure additional system libraries
# a system library is considered a library that can be installed in most
# linux distributions over the normal package management system in contrast
# to fire specific libraries and research libraries which are very uncommon
# and can only be obtained from research websites and must be compiled
# yourself
#----------------------------------------------------------------------
#- use pthreads in server ---------------------------------------------
#PTHREAD_FLAGS=-D__USE_PTHREADS_FOR_SERVER__
#-image magick---------------------------------------------------------
# note: though it is possible to compile without you most probably do not
# want this. This is only to allow for batch experiments using strange
# compilers on large systems. Furthermore you definitively need a version
# of fire using imagemagick because you need to create features and so forth
IMAGEMAGICK_FLAGS=-DHAVE_IMAGE_MAGICK `Magick++-config --cxxflags --cppflags`
IMAGEMAGICK_LDLIBS=`Magick++-config --libs`
IMAGEMAGICK_LDFLAGS=`Magick++-config --ldflags`
#----------------------------------------------------------------------
#-lapack/atlas/blas----------------------------------------------------
# note: you don't need this if you don't want to use PCA
LAPACK_FLAGS=-DHAVE_LAPACK
LAPACK_LIBS=-latlas -llapack #-lg2c
#----------------------------------------------------------------------
#- SQLite -------------------------------------------------------------
# this library can be used in image comparator for caching of distances
# this is slower than expected and thus does not make much sense
#SQLITE_FLAGS=-DHAVE_SQLITE3
#SQLITE_LDLIBS=-lsqlite3
#----------------------------------------------------------------------
#-fft library----------------------------------------------------------
# this library is needed for gabor feature extraction
# if not available, the corresponding classes wont do anything useful
#
FFT_FLAGS=-DHAVE_FFT_LIBRARY -DFFTW_INCLUDE='<dfftw.h>' -I/opt/local/include
FFT_LIB_LDLIBS=-ldfftw -L/opt/local/lib
#----------------------------------------------------------------------
SYSTEM_LIB_FLAGS=$(PTHREAD_FLAGS) $(IMAGEMAGICK_FLAGS) $(LAPACK_FLAGS) $(SQLITE_FLAGS) $(FFT_FLAGS)
SYSTEM_LIB_LDFLAGS=$(IMAGEMAGICK_LDFLAGS)
SYSTEM_LIB_LDLIBS=$(IMAGEMAGICK_LDLIBS) $(LAPACK_LIBS) $(SQLITE_LDLIBS) $(FFT_LIB_LDLIBS)
#----------------------------------------------------------------------
# configure additional FIRE specific/research libraries
# in the next sections, FIRE specific libraries and research libraries
# are configured for use with FIRE. Most of these libraries are highly
# optional and are not really required for normal use.
#----------------------------------------------------------------------
#-kdtree library-------------------------------------------------------
# this library is necessary for local feature based image retrieval
# the library used here was written by Javi Cano ([email protected])
#
# there is an install script available for this library
#
KDTREE_FLAGS=-DHAVE_KDTREE_LIBRARY
KDTREE_LDLIBS=-lknn
#----------------------------------------------------------------------
#-libsvm library-------------------------------------------------------
LIBSVM_FLAGS=-DHAVE_LIBSVM
LIBSVM_OBJECTS=OptionalLibraries/$(ARCH)/svm.o
# the object has to be created by hand, it is not created by this makefile
#----------------------------------------------------------------------
#-interpolation library------------------------------------------------
# this is necessary for extraction of invariant feature histograms
# downloaded from Philippe Thevenaz
#
# http://bigwww.epfl.ch/thevenaz/interpolation/interpol.tar
#
# if this library is not available, bilinear interpolation with
# wraparound is used
INTERPOL_FLAGS=-DHAVE_INTERPOL_LIBRARY
INTERPOL_OBJECTS=OptionalLibraries/$(ARCH)/interpol.o OptionalLibraries/$(ARCH)/coeff.o
#----------------------------------------------------------------------
#-RAST library---------------------------------------------------------
# this library is needed for dist_rast which is to be used with
# LFPositionClusterIdFeature
# this library is developed by Thomas M Breuel at www.iupr.org
#
#RAST_FLAGS=-DHAVE_RAST_LIBRARY
#RAST_OBJECTS=OptionalLibraries/$(ARCH)/rast.o
#----------------------------------------------------------------------
# siftpp library ------------------------------------------------------
# this is in the fire repository
#
#SIFT_FLAGS=-DVL_LOWE_STRICT -DVL_USEFASTMATH
#----------------------------------------------------------------------
# - SURF library ------------------------------------------------------
# downloaded from KU Leuven/ETH Zuerich
# http://www.vision.ee.ethz.ch/~surf/
# http://www.vision.ee.ethz.ch/~surf/SURF-V1.0.9.tar.gz
#SURF_LDFLAGS=-Llib/i686/surf
#SURF_LDLIBS=-lSurf
#SURF_FLAGS=-DUSE_SURF
#----------------------------------------------------------------------
SPECIAL_LIBRARIES_FLAGS = -IOptionalLibraries/include $(KDTREE_FLAGS) $(SIFT_FLAGS) $(INTERPOL_FLAGS) $(SURF_FLAGS) $(RAST_FLAGS) $(LIBSVM_FLAGS) $(LOGLIN_FLAGS)
SPECIAL_LIBRARIES_LDFLAGS = -LOptionalLibraries/$(ARCH) $(LOGLIN_LDFLAGS)
SPECIAL_LIBRARIES_LDLIBS = $(LIBSVM_OBJECTS) $(INTERPOL_OBJECTS) $(KDTREE_LDLIBS) $(SURF_LDLIBS) $(RAST_OBJECTS) $(LOGLIN_LDLIBS)
#----------------------------------------------------------------------
# global configuration section
# all variables defined above are put together
#----------------------------------------------------------------------
CXX=g++
LD=g++
INCLUDES=-ICore -IClassifiers -IClustering -IDistanceFunctions -IFeatureExtractors -IFeatures -IImage -IMisc -IRetriever -ITools
CXXFLAGS=-Wall -I. -DDEBUG_LEVEL=10 -O3 $(INCLUDES) $(SYSTEM_LIB_FLAGS) $(SPECIAL_LIBRARIES_FLAGS) $(LOCAL_LIBRARIES_FLAGS)
LDFLAGS=$(SYSTEM_LIB_LDFLAGS) $(LDLIBS) $(SPECIAL_LIBRARIES_LDFLAGS)
LDLIBS=-lz $(SYSTEM_LIB_LDLIBS) $(SPECIAL_LIBRARIES_LDLIBS)
AR = ar
ARFLAGS = rucs
#MAKELIB = rm -f $@; $(AR) $(ARFLAGS)
MAKELIB = $(AR) $(ARFLAGS)
MAKEDEPEND = makedepend -v -D__GNUC__=3 -D__GNUC_MINOR__=3
OBJDIR:=obj/$(ARCH)
BINDIR:=bin/$(ARCH)
LIBDIR:=lib/$(ARCH)
TEXTIR_FLAGS:=-I/usr/include/qt3 -L/usr/lib -lqt-mt -lGL -lpthread