-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDASOS.pro
152 lines (133 loc) · 4.9 KB
/
DASOS.pro
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
142
143
144
145
146
147
148
149
150
151
OBJECTS_DIR=obj/
TARGET=DASOS
CONFIG += console
CONFIG -= app_bundle
SOURCES += \
src/main.cpp \
src/bilLib/bil.cpp \
src/bilLib/binaryreader.cpp \
src/bilLib/binfile.cpp \
src/bilLib/bsq.cpp \
src/bilLib/commonfunctions.cpp \
src/bilLib/logger.cpp \
src/LASHandler/Las1_3_handler.cpp \
src/Object/GLData.cpp \
src/Object/Grid.cpp \
src/MarchingCubes/HashTable.cpp \
src/MarchingCubes/MarchingCubes.cpp \
src/Maps/DensityMap.cpp \
src/Maps/HyperMap.cpp \
src/Maps/HyperMean.cpp \
src/Maps/HyperStandardDeviation.cpp \
src/Maps/Map.cpp \
src/Maps/MapsManager.cpp \
src/Maps/NonEmptyVoxelsMap.cpp \
src/Maps/ThicknessMap.cpp \
src/Maps/FirstPatch.cpp \
src/Maps/LastPatch.cpp \
src/Maps/NDVI.cpp \
src/Maps/TerrainModel.cpp \
src/Maps/SpectralSignature.cpp \
src/Maps/SignatureDifferneceMap.cpp \
src/Maps/AverageHeightDifference.cpp \
src/Maps/HeightMap.cpp \
src/bilLib/multifile.cpp \
src/Maps/TreeCrowns.cpp \
src/Maps/TreeCrownsTemplates.cpp \
src/Maps/TreeCrownsWith2Templates.cpp \
src/Maps/IntensityMap.cpp \
src/Maps/IntensityMax.cpp \
src/Maps/FieldPlotOnHeightMap.cpp \
src/fieldPlots/NewForest/TreeDetectionEvaluation.cpp \
src/fieldPlots/NewForest/CreateTreeTemplates.cpp \
src/fieldPlots/NewForest/TemplatesManager.cpp \
src/fieldPlots/NewForest/NF_FieldPlot.cpp \
src/fieldPlots/NewForest/NF_FieldPlotManagerByType.cpp \
src/fieldPlots/NewForest/NF_FieldPlotsManager.cpp \
src/LASHandler/PW_handler.cpp \
src/Object/Volume.cpp \
src/Object/VolumeFactory.cpp \
src/LASHandler/PW_descriptor.cpp \
src/LASHandler/PW_scannerVLR.cpp \
src/LASHandler/PW_lookUpTable.cpp \
src/Object/VolumeHashed1DArray.cpp \
src/fieldPlots/Interpine/Int_Plot.cpp \
src/fieldPlots/Interpine/Int_PlotsManager.cpp \
src/Object/DtmBilReader.cpp \
src/Object/PairDoubleInt.cpp
INCLUDEPATH+=./include/bilLib \
./include/LASHandler \
./include/Object \
./include/Object/Octree \
./include/MarchingCubes \
./include/Maps\
./include/svm \
./include/fieldPlots/NewForest \
./include/fieldPlots/Interpine \
./include/fieldPlots
INCLUDEPATH += "/users/rsg/mmi/gmtl-0.6.1/build/include/gmtl-0.6.1/"
#INCLUDEPATH += "C:\Users\milto\Adobe Flash Builder 4.6\Documents\EngD\DASOS_testing2-master\gmtl-0.6.1"
INCLUDEPATH += "C:/Users/Milto/Documents/gmtl-master"
INCLUDEPATH += "/home/milto/gmtl-master"
#INCLUDEPATH += /usr/local/include/opencv
#LIBS += -L/usr/local/lib -lopencv_core -lopencv_highgui
#QMAKE_LFLAGS += -static -static-libgcc -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc
QMAKE_CXXFLAGS += -std=c++11
DEPENDPATH+=include
HEADERS += \
include/bilLib/bil.h \
include/bilLib/binaryreader.h \
include/bilLib/binfile.h \
include/bilLib/bsq.h \
include/bilLib/commonfunctions.h \
include/bilLib/logger.h \
include/LASHandler/Las1_3_handler.h \
include/Object/GLData.h \
include/Object/Grid.h \
include/MarchingCubes/HashTable.h \
include/MarchingCubes/MarchingCubes.h \
include/MarchingCubes/MCTables.h \
include/Maps/DensityMap.h \
include/Maps/HyperMap.h \
include/Maps/HyperMean.h \
include/Maps/HyperStandardDeviation.h \
include/Maps/Map.h \
include/Maps/MapsManager.h \
include/Maps/NonEmptyVoxelsMap.h \
include/Maps/ThicknessMap.h \
include/Maps/FirstPatch.h \
include/Maps/LastPatch.h \
include/Maps/NDVI.h \
include/Maps/TerrainModel.h \
include/Maps/SpectralSignature.h \
include/Maps/SignatureDifferneceMap.h \
include/Maps/AverageHeightDifference.h \
include/Maps/HeightMap.h \
include/bilLib/multifile.h \
include/Maps/TreeCrowns.h \
include/Maps/TreeCrownsTemplates.h \
include/Maps/TreeCrownsWith2Templates.h \
include/Maps/IntensityMap.h \
include/Maps/IntensityMax.h \
include/Maps/FieldPlotOnHeightMap.h \
include/fieldPlots/NewForest/TreeDetectionEvaluation.h \
include/fieldPlots/NewForest/CreateTreeTemplates.h \
include/LASHandler/PWTypes.h \
include/LASHandler/PW_handler.h \
include/LASHandler/LAS1_3Types.h \
include/Object/Volume.h \
include/Object/VolumeFactory.h \
include/LASHandler/PW_descriptor.h \
include/LASHandler/PW_scannerVLR.h \
include/LASHandler/PW_lookUpTable.h \
include/Object/VolumeHashed1DArray.h \
include/fieldPlots/NewForest/NF_FieldPlot.h \
include/fieldPlots/NewForest/NF_FieldPlotManagerByType.h \
include/fieldPlots/NewForest/NF_FieldPlotsManager.h \
include/fieldPlots/NewForest/TemplatesManager.h \
include/fieldPlots/Interpine/Int_Plot.h \
include/fieldPlots/Interpine/Int_PlotsManager.h \
include/Object/DtmBilReader.h \
include/Object/PairDoubleInt.h
DISTFILES += \
main.cu