-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathCMakeLists.txt
executable file
·600 lines (497 loc) · 11.3 KB
/
CMakeLists.txt
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
# (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
#
# This software is proprietary and confidential to Facebook, Inc. Any reproduction, distribution,
# modification, performance, display, and other use or disclosure is prohibited except to the
# extent expressly permitted in a written agreement executed by an authorized representative of
# Facebook, Inc.
cmake_minimum_required(VERSION 3.4)
project(Facebook360_DEP CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
if(UNIX AND NOT APPLE)
set(LINUX TRUE)
endif()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
if(APPLE)
set(CMAKE_OSX_ARCHITECTURES "${ARCHS_STANDARD}")
endif()
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -m64 -O3 -funroll-loops -pipe")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -mmmx -mavx -msse -msse3")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wsign-compare")
if(BUILD_LINE_COVERAGE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-instr-generate -fcoverage-mapping")
endif()
if(NOT APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
endif()
# Add extra directories that may not have been added by default
set(OPT_LOCAL_DIR "/opt/local")
if(EXISTS "${OPT_LOCAL_DIR}/lib")
link_directories("${OPT_LOCAL_DIR}/lib")
include_directories(SYSTEM "${OPT_LOCAL_DIR}/include")
endif()
set(USR_LOCAL_DIR "/usr/local")
if(EXISTS "${USR_LOCAL_DIR}/lib")
link_directories("${USR_LOCAL_DIR}/lib")
include_directories(SYSTEM "${USR_LOCAL_DIR}/include")
endif()
# Add custom targets to show all source and header files in Xcode
file(GLOB SRC "${CMAKE_CURRENT_SOURCE_DIR}/source/*")
add_custom_target(_source SOURCES ${SRC})
find_package(OpenCV 3 REQUIRED core imgproc imgcodecs highgui objdetect video)
set(OPENCV_COMPONENTS
opencv_core
opencv_imgproc
opencv_imgcodecs
opencv_highgui
opencv_objdetect
opencv_video)
# When adding Boost::chrono to target_link_libraries make sure it is listed after Boost::timer
# because Boost::timer depends on Boost::chrono
find_package(Boost REQUIRED COMPONENTS chrono filesystem system program_options regex timer)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
find_package(Ceres 1.14 REQUIRED)
find_package(gflags 2.2 REQUIRED)
find_package(glog 0.3 REQUIRED)
find_package(Eigen3 3.3 REQUIRED)
find_package(double-conversion 3.0)
include_directories(${EIGEN3_INCLUDE_DIR})
if(APPLE)
set(FOLLY_LIB folly)
else()
find_package(Folly REQUIRED)
set(FOLLY_LIB Folly::folly)
endif()
set(FOLLY_TARGET ${FOLLY_LIB} double-conversion)
###### Targets ######
### TARGET AlignColors ###
add_executable(
AlignColors
source/calibration/AlignColors.cpp
)
target_link_libraries(
AlignColors
LibUtil
)
### TARGET AlignPointCloud ###
add_executable(
AlignPointCloud
source/rig/AlignPointCloud.cpp
source/conversion/PointCloudUtil.cpp
)
target_link_libraries(
AlignPointCloud
CalibrationLib
LibUtil
)
### TARGET Calibration ###
add_executable(
Calibration
source/calibration/CalibrationMain.cpp
)
target_link_libraries(
Calibration
CalibrationLib
LibUtil
glfw
)
### TARGET CalibrationLib ###
add_library(
CalibrationLib
source/calibration/Calibration.cpp
source/calibration/CalibrationLib.cpp
source/calibration/FeatureDetector.cpp
source/calibration/FeatureMatcher.cpp
source/calibration/MatchCorners.cpp
source/calibration/GeometricCalibration.cpp
)
target_link_libraries(
CalibrationLib
LibUtil
)
target_include_directories(
CalibrationLib
PRIVATE
source/calibration
source/util
)
### TARGET CalibrationLibMain ###
add_executable(
CalibrationLibMain
source/calibration/CalibrationLibMain.cpp
source/calibration/CalibrationLib.h
)
target_link_libraries(
CalibrationLibMain
CalibrationLib
)
### TARGET DepUnitTest ###
add_executable(
DepUnitTest
source/test/DepUnitTest.cpp
source/test/calibration/MatchCornersTest.cpp
source/test/depth_estimation/DerpTest.cpp
source/test/util/FThetaTest.cpp
source/test/util/RectilinearTest.cpp
source/test/util/OrthographicTest.cpp
source/test/util/CameraTestUtil.cpp
)
target_link_libraries(
DepUnitTest
CalibrationLib
LibUtil
gtest
)
### TARGET ComputeRephotographyErrors ###
add_executable(
ComputeRephotographyErrors
source/render/ComputeRephotographyErrors.cpp
)
target_compile_features(ComputeRephotographyErrors PRIVATE cxx_range_for)
target_link_libraries(
ComputeRephotographyErrors
LibRender
)
### TARGET ConvertToBinary ###
include("${CMAKE_CURRENT_SOURCE_DIR}/ISPC.cmake")
add_executable(
ConvertToBinary
source/mesh_stream/ConvertToBinary.cpp
source/render/MeshSimplifier.cpp
)
target_link_libraries(
ConvertToBinary
LibUtil
ispc_texcomp
)
### TARGET CorrectVignetting ###
add_executable(
CorrectVignetting
source/isp/CorrectVignetting.cpp
)
target_link_libraries(
CorrectVignetting
LibUtil
)
### TARGET CreateObjFromDisparityEquirect ###
add_executable(
CreateObjFromDisparityEquirect
source/conversion/CreateObjFromDisparityEquirect.cpp
source/render/MeshSimplifier.cpp
)
target_link_libraries(
CreateObjFromDisparityEquirect
LibUtil
)
### TARGET DerpCLI ###
add_executable(
DerpCLI
source/depth_estimation/DerpCLI.cpp
source/depth_estimation/Derp.cpp
source/depth_estimation/DerpUtil.cpp
source/depth_estimation/UpsampleDisparityLib.cpp
)
target_link_libraries(
DerpCLI
LibUtil
)
### TARGET ExportPointCloud ###
add_executable(
ExportPointCloud
source/conversion/ExportPointCloud.cpp
)
target_link_libraries(
ExportPointCloud
LibUtil
)
### TARGET GenerateCameraOverlaps ###
add_executable(
GenerateCameraOverlaps
source/render/GenerateCameraOverlaps.cpp
)
target_link_libraries(
GenerateCameraOverlaps
LibUtil
)
### TARGET GenerateEquirect ###
add_executable(
GenerateEquirect
source/render/GenerateEquirect.cpp
)
target_link_libraries(
GenerateEquirect
LibUtil
)
### TARGET GenerateForegroundMasks ###
add_executable(
GenerateForegroundMasks
source/render/GenerateForegroundMasks.cpp
)
target_link_libraries(
GenerateForegroundMasks
LibUtil
)
### TARGET GenerateKeypointProjections ###
add_executable(
GenerateKeypointProjections
source/render/GenerateKeypointProjections.cpp
)
target_link_libraries(
GenerateKeypointProjections
CalibrationLib
LibUtil
)
### TARGET GeometricCalibration ###
add_executable(
GeometricCalibration
source/calibration/GeometricCalibrationMain.cpp
)
target_link_libraries(
GeometricCalibration
CalibrationLib
LibUtil
)
### TARGET GeometricConsistency ###
add_executable(
GeometricConsistency
source/render/GeometricConsistency.cpp
)
target_link_libraries(
GeometricConsistency
LibRender
)
### TARGET GlViewer ###
add_executable(
GlViewer
source/viewer/GlViewer.cpp
)
target_link_libraries(
GlViewer
LibRender
)
### TARGET ImportPointCloud ###
add_executable(
ImportPointCloud
source/conversion/ImportPointCloud.cpp
source/conversion/PointCloudUtil.cpp
)
target_link_libraries(
ImportPointCloud
LibUtil
)
### TARGET LayerDisparities ###
add_executable(
LayerDisparities
source/depth_estimation/LayerDisparities.cpp
source/depth_estimation/DerpUtil.cpp
)
target_link_libraries(
LayerDisparities
LibUtil
)
### TARGET LibRender ###
if (LINUX)
find_package(OpenGL REQUIRED COMPONENTS OpenGL EGL)
else(LINUX)
find_package(OpenGL)
endif(LINUX)
find_package(glfw3 3.3 REQUIRED)
if(APPLE)
add_definitions(-DGL_SILENCE_DEPRECATION)
endif()
add_library(
LibRender STATIC
source/gpu/GlfwUtil.cpp
source/render/CanopyScene.cpp
source/render/RigScene.cpp
)
if (LINUX)
target_link_libraries(
LibRender
LibUtil
glfw
OpenGL::OpenGL
OpenGL::EGL
)
else()
find_package(GLEW REQUIRED)
target_link_libraries(
LibRender
LibUtil
glfw
${GLEW_LIBRARY}
${OPENGL_LIBRARIES}
)
endif()
# For some reason the linking to the the GLUT library has to be made explicit for buck
# TARGET_MACOS needs to be triggered by an external cmake build system
if(TARGET_MACOS)
target_link_libraries(
LibRender
/System/Library/Frameworks/GLUT.framework
)
endif()
### TARGET LibUtil ###
file(GLOB util_SRC "source/util/*.cpp")
file(GLOB_RECURSE fb360_dep_HDRS "source/*.h")
add_library(
LibUtil STATIC
${util_SRC}
${fb360_dep_HDRS}
)
target_link_libraries(
LibUtil
gflags
Boost::filesystem
Boost::system
Boost::program_options
Boost::timer
Boost::chrono
Eigen3::Eigen
glog::glog
${OPENCV_COMPONENTS}
${CERES_LIBRARIES}
${FOLLY_TARGET}
)
### TARGET MatchCorners ###
add_executable(
MatchCorners
source/calibration/MatchCornersMain.cpp
)
target_link_libraries(
MatchCorners
CalibrationLib
LibUtil
)
### TARGET PngToPfm ###
add_executable(
PngToPfm
source/conversion/PngToPfm.cpp
)
target_link_libraries(
PngToPfm
LibUtil
)
### TARGET ProjectCamerasToEquirects ###
add_executable(
ProjectCamerasToEquirects
source/conversion/ProjectCamerasToEquirects.cpp
)
target_link_libraries(
ProjectCamerasToEquirects
LibRender
)
### TARGET ProjectEquirectsToCameras ###
add_executable(
ProjectEquirectsToCameras
source/conversion/ProjectEquirectsToCameras.cpp
)
target_link_libraries(
ProjectEquirectsToCameras
LibUtil
)
### TARGET RawToRgb ###
add_executable(
RawToRgb
source/isp/RawToRgb.cpp
)
target_link_libraries(
RawToRgb
LibUtil
${OPENGL_LIBRARIES}
)
### TARGET RigAligner ###
add_executable(
RigAligner
source/rig/RigAligner.cpp
)
target_link_libraries(
RigAligner
LibUtil
)
### TARGET RigAnalyzer ###
add_executable(
RigAnalyzer
source/rig/RigAnalyzer.cpp
)
target_compile_features(RigAnalyzer PRIVATE cxx_range_for)
target_link_libraries(
RigAnalyzer
LibUtil
)
### TARGET RigCompare ###
add_executable(
RigCompare
source/rig/RigCompare.cpp
)
target_link_libraries(
RigCompare
${CERES_LIBRARIES}
LibUtil
)
### TARGET RigSimulator ###
add_executable(
RigSimulator
source/rig/RigSimulator.cpp
)
target_link_libraries(
RigSimulator
LibUtil
)
### TARGET SimpleMeshRenderer ###
add_executable(
SimpleMeshRenderer
source/render/SimpleMeshRenderer.cpp
)
target_link_libraries(
SimpleMeshRenderer
LibRender
)
### TARGET TemporalBilateralFilter ###
add_executable(
TemporalBilateralFilter
source/depth_estimation/TemporalBilateralFilter.cpp
source/depth_estimation/Derp.cpp
source/depth_estimation/DerpUtil.cpp
)
target_link_libraries(
TemporalBilateralFilter
LibUtil
)
### TARGET UpsampleDisparity ###
add_executable(
UpsampleDisparity
source/depth_estimation/UpsampleDisparity.cpp
source/depth_estimation/DerpUtil.cpp
source/depth_estimation/UpsampleDisparityLib.cpp
)
target_link_libraries(
UpsampleDisparity
LibUtil
)
### TARGET ViewColorVarianceThresholds ###
add_executable(
ViewColorVarianceThresholds
source/render/ViewColorVarianceThresholds.cpp
source/depth_estimation/DerpUtil.cpp
)
target_link_libraries(
ViewColorVarianceThresholds
LibUtil
)
### TARGET ViewForegroundMaskThresholds ###
add_executable(
ViewForegroundMaskThresholds
source/render/ViewForegroundMaskThresholds.cpp
)
target_link_libraries(
ViewForegroundMaskThresholds
LibUtil
)