misc/openmvg: Update 1.3-76 -> 1.4

Reported by:	portscout
This commit is contained in:
Yuri Victorovich 2018-08-26 20:20:32 +00:00
parent c226e81036
commit 0d4dbdd1fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=478166
18 changed files with 606 additions and 152 deletions

View File

@ -2,8 +2,7 @@
PORTNAME= openmvg
DISTVERSIONPREFIX= v
DISTVERSION= 1.3-76
DISTVERSIONSUFFIX= -gd9563130
DISTVERSION= 1.4
CATEGORIES= misc science
MAINTAINER= yuri@FreeBSD.org
@ -55,8 +54,4 @@ CORE_CMAKE_ON= -DTARGET_ARCHITECTURE=core
MEROM_CMAKE_ON= -DTARGET_ARCHITECTURE=merom
NEHALEM_CMAKE_ON= -DTARGET_ARCHITECTURE=nehalem
post-install:
@${FIND} ${STAGEDIR}${PREFIX}/lib -name "*.a" -delete # delete wrongly installed dependency libs https://github.com/openMVG/openMVG/issues/1282
${INSTALL_LIB} ${BUILD_WRKSRC}/*/libdomset.so ${STAGEDIR}${PREFIX}/lib # https://github.com/openMVG/openMVG/issues/1286
.include <bsd.port.mk>

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1523438342
SHA256 (openMVG-openMVG-v1.3-76-gd9563130_GH0.tar.gz) = cb459c3f43e8dada6363930b5a72e981cf92d33e72d22339c236b0a2fee63fb7
SIZE (openMVG-openMVG-v1.3-76-gd9563130_GH0.tar.gz) = 14619283
TIMESTAMP = 1535309524
SHA256 (openMVG-openMVG-v1.4_GH0.tar.gz) = edecf390acdac224f82050ee09d931049dcf61118c96cf4780808427eabbb0f2
SIZE (openMVG-openMVG-v1.4_GH0.tar.gz) = 14637259
SHA256 (openMVG-thirdparty-cereal-37fca60_GH0.tar.gz) = a035c996d1a9150dc0aa09982dee5114c46b9b40c320a307223e4a362279e9fd
SIZE (openMVG-thirdparty-cereal-37fca60_GH0.tar.gz) = 328935
SHA256 (openMVG-thirdparty-osi_clp-a25a980_GH0.tar.gz) = 749c742b7eb6d346d34ef02872c7a02bdbef6759bdd48b9542dffb91bf82d0d7

View File

@ -1,6 +1,6 @@
--- CMakeLists.txt.orig 2018-04-04 02:59:09 UTC
--- CMakeLists.txt.orig 2018-08-25 14:45:11 UTC
+++ CMakeLists.txt
@@ -109,8 +109,8 @@ AutodetectHostArchitecture()
@@ -104,8 +104,8 @@ AutodetectHostArchitecture()
OptimizeForArchitecture()
if (UNIX AND NOT OpenMVG_BUILD_COVERAGE)
@ -11,9 +11,9 @@
endif ()
# ==============================================================================
@@ -257,7 +257,7 @@ find_package(Eigen QUIET)
# - internal by default (ceres-solver+cxsparse+miniglog),
# - external if CERES_DIR_HINTS and find_package return a valid Ceres setup
@@ -257,7 +257,7 @@ endif()
# - external by default if CERES_DIR_HINTS or find_package found a valid Ceres
# - internal if ceres not found (ceres-solver+cxsparse+miniglog)
# ==============================================================================
-find_package(Ceres QUIET HINTS ${CERES_DIR_HINTS})
+#find_package(Ceres QUIET HINTS ${CERES_DIR_HINTS}) # external ceres can't work because it requires fortran

View File

@ -0,0 +1,9 @@
--- dependencies/osi_clp/Clp/src/OsiClp/CMakeLists.txt.orig 2018-08-26 19:29:00 UTC
+++ dependencies/osi_clp/Clp/src/OsiClp/CMakeLists.txt
@@ -9,5 +9,5 @@ file(
OSI_SRCS
*.cpp
)
-ADD_LIBRARY(lib_OsiClpSolver ${OSI_HEADERS} ${OSI_SRCS})
+ADD_LIBRARY(lib_OsiClpSolver SHARED ${OSI_HEADERS} ${OSI_SRCS})
INSTALL(TARGETS lib_OsiClpSolver DESTINATION lib EXPORT openMVG-targets)

View File

@ -0,0 +1,9 @@
--- dependencies/osi_clp/CoinUtils/src/CMakeLists.txt.orig 2018-08-26 19:29:34 UTC
+++ dependencies/osi_clp/CoinUtils/src/CMakeLists.txt
@@ -12,5 +12,5 @@ file(
)
-ADD_LIBRARY(lib_CoinUtils ${COINUTILS_HEADER} ${COINUTILS_CPP})
+ADD_LIBRARY(lib_CoinUtils SHARED ${COINUTILS_HEADER} ${COINUTILS_CPP})
INSTALL(TARGETS lib_CoinUtils DESTINATION lib EXPORT openMVG-targets)

View File

@ -0,0 +1,9 @@
--- dependencies/osi_clp/Osi/src/Osi/CMakeLists.txt.orig 2018-08-26 19:31:00 UTC
+++ dependencies/osi_clp/Osi/src/Osi/CMakeLists.txt
@@ -10,5 +10,5 @@ file(
*.cpp
)
-ADD_LIBRARY(lib_Osi ${OSI_OSI_HEADER} ${OSI_OSI_CPP})
+ADD_LIBRARY(lib_Osi SHARED ${OSI_OSI_HEADER} ${OSI_OSI_CPP})
INSTALL(TARGETS lib_Osi DESTINATION lib EXPORT openMVG-targets)

View File

@ -1,6 +1,6 @@
--- nonFree/sift/CMakeLists.txt.orig 2018-04-12 07:29:41 UTC
--- nonFree/sift/CMakeLists.txt.orig 2018-08-25 14:45:11 UTC
+++ nonFree/sift/CMakeLists.txt
@@ -25,7 +25,7 @@ set(FEATS
@@ -25,7 +25,7 @@ set(FEATS
vl/mathop.c
vl/random.c)
set_source_files_properties(${FEATS} PROPERTIES LANGUAGE C)

View File

@ -1,10 +0,0 @@
--- software/Localization/CMakeLists.txt.orig 2018-04-12 06:18:40 UTC
+++ software/Localization/CMakeLists.txt
@@ -10,6 +10,7 @@ target_link_libraries(openMVG_main_SfM_L
openMVG_matching_image_collection
openMVG_sfm
openMVG_exif
+ stlplus
vlsift
)

View File

@ -1,18 +0,0 @@
--- software/SfM/CMakeLists.txt.orig 2018-04-04 02:59:09 UTC
+++ software/SfM/CMakeLists.txt
@@ -10,6 +10,7 @@ target_link_libraries(openMVG_main_SfMIn
openMVG_features
openMVG_sfm
openMVG_exif
+ stlplus
)
#convert a v0.6 lists.txt file to the new sfm_data.X format
@@ -19,6 +20,7 @@ target_link_libraries(openMVG_main_Conve
openMVG_system
openMVG_features
openMVG_sfm
+ stlplus
)
# Installation rules

View File

@ -1,10 +0,0 @@
--- software/SfM/clustering/CMakeLists.txt.orig 2018-04-12 06:16:36 UTC
+++ software/SfM/clustering/CMakeLists.txt
@@ -8,6 +8,7 @@ target_link_libraries(openMVG_main_Compu
openMVG_image
openMVG_features
openMVG_sfm
+ stlplus
domset)
set_property(TARGET openMVG_main_ComputeClusters PROPERTY FOLDER OpenMVG/software/clustering)

View File

@ -1,11 +0,0 @@
--- software/ui/SfM/adjacency_matrix_viewer/CMakeLists.txt.orig 2018-04-12 06:21:46 UTC
+++ software/ui/SfM/adjacency_matrix_viewer/CMakeLists.txt
@@ -20,7 +20,7 @@ if (Qt5Widgets_FOUND AND Qt5Svg_FOUND )
endif( APPLE )
target_include_directories( ui_openMVG_MatchesViewer PUBLIC ${OPENMVG_INCLUDE_DIRS} )
- target_link_libraries( ui_openMVG_MatchesViewer Qt5::Widgets Qt5::Svg ${OpenMVG_LIBRARIES} )
+ target_link_libraries( ui_openMVG_MatchesViewer Qt5::Widgets Qt5::Svg ${OpenMVG_LIBRARIES} stlplus)
find_package( Qt5OpenGL )
if (Qt5OpenGL_FOUND )

View File

@ -1,10 +0,0 @@
--- software/ui/SfM/control_points_registration/CMakeLists.txt.orig 2018-04-12 06:23:20 UTC
+++ software/ui/SfM/control_points_registration/CMakeLists.txt
@@ -41,6 +41,7 @@ if(Qt5Widgets_FOUND)
TARGET_LINK_LIBRARIES(${ProjectName}
Qt5::Widgets Qt5::Gui
${OpenMVG_LIBRARIES}
+ stlplus
)
SET_PROPERTY(TARGET ${ProjectName} PROPERTY FOLDER OpenMVG/software/ui)

View File

@ -0,0 +1,11 @@
--- third_party/ceres-solver/internal/ceres/CMakeLists.txt.orig 2018-08-26 19:32:38 UTC
+++ third_party/ceres-solver/internal/ceres/CMakeLists.txt
@@ -196,7 +196,7 @@ if (MINIGLOG)
list(APPEND CERES_LIBRARY_SOURCE miniglog/glog/logging.cc)
endif (MINIGLOG)
-add_library(openMVG_ceres STATIC ${CERES_LIBRARY_SOURCE})
+add_library(openMVG_ceres SHARED ${CERES_LIBRARY_SOURCE})
set_target_properties(openMVG_ceres PROPERTIES
VERSION ${CERES_VERSION}
SOVERSION ${CERES_VERSION_MAJOR})

View File

@ -0,0 +1,11 @@
--- third_party/cxsparse/CMakeLists.txt.orig 2018-08-26 19:12:57 UTC
+++ third_party/cxsparse/CMakeLists.txt
@@ -6,7 +6,7 @@ project(CXSparse C)
file(GLOB CXSparse_SRCS "Source/*.c")
set_source_files_properties(${CXSparse_SRCS} PROPERTIES LANGUAGE C)
-add_library(openMVG_cxsparse STATIC ${CXSparse_SRCS})
+add_library(openMVG_cxsparse SHARED ${CXSparse_SRCS})
target_compile_definitions(openMVG_cxsparse PUBLIC NCOMPLEX)
target_include_directories(openMVG_cxsparse PRIVATE ./ ./Include)
if(UNIX)

View File

@ -0,0 +1,10 @@
--- third_party/easyexif/CMakeLists.txt.orig 2018-08-26 19:13:28 UTC
+++ third_party/easyexif/CMakeLists.txt
@@ -1,6 +1,6 @@
project (openMVG_easyexif CXX)
-add_library(openMVG_easyexif STATIC exif.h exif.cpp)
+add_library(openMVG_easyexif SHARED exif.h exif.cpp)
set_property(TARGET openMVG_easyexif PROPERTY FOLDER OpenMVG/3rdParty)
install(TARGETS openMVG_easyexif DESTINATION lib EXPORT openMVG-targets)

View File

@ -0,0 +1,11 @@
--- third_party/fast/CMakeLists.txt.orig 2018-08-26 19:17:28 UTC
+++ third_party/fast/CMakeLists.txt
@@ -1,7 +1,7 @@
project(openMVG_fast)
file(GLOB_RECURSE C_FILES ${CMAKE_CURRENT_SOURCE_DIR} *.c)
set_source_files_properties(${C_FILES} PROPERTIES LANGUAGE CXX)
-add_library(openMVG_fast STATIC ${C_FILES})
+add_library(openMVG_fast SHARED ${C_FILES})
set_property(TARGET openMVG_fast PROPERTY FOLDER OpenMVG/3rdParty)
install(TARGETS openMVG_fast DESTINATION lib EXPORT openMVG-targets)

View File

@ -1,11 +0,0 @@
--- third_party/stlplus3/CMakeLists.txt.orig 2018-04-12 05:13:46 UTC
+++ third_party/stlplus3/CMakeLists.txt
@@ -6,7 +6,7 @@ file(GLOB LIBSLTPLUS_CPP_FILESYSTEM "${C
list(APPEND LIBSLTPLUS_SRCS
${LIBSLTPLUS_HPP_FILESYSTEM} ${LIBSLTPLUS_CPP_FILESYSTEM})
-add_library(stlplus ${LIBSLTPLUS_SRCS})
+add_library(stlplus SHARED ${LIBSLTPLUS_SRCS})
target_include_directories(stlplus PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_PREFIX}/include/stlplus>)

View File

@ -13,9 +13,12 @@ bin/openMVG_main_ExportUndistortedImages
bin/openMVG_main_FrustumFiltering
bin/openMVG_main_GlobalSfM
bin/openMVG_main_IncrementalSfM
bin/openMVG_main_IncrementalSfM2
bin/openMVG_main_ListMatchingPairs
bin/openMVG_main_MatchesToTracks
bin/openMVG_main_PointsFiltering
bin/openMVG_main_SfMInit_ImageListing
bin/openMVG_main_SfMInit_ImageListingFromKnownPoses
bin/openMVG_main_SfM_Localization
bin/openMVG_main_SplitMatchFileIntoMatchFiles
bin/openMVG_main_evalQuality
@ -36,7 +39,6 @@ bin/openMVG_main_openMVG2openMVS
bin/ui_openMVG_MatchesViewer
bin/ui_openMVG_control_points_registration
include/openMVG/cameras/Camera_Common.hpp
include/openMVG/cameras/Camera_IO.hpp
include/openMVG/cameras/Camera_Intrinsics.hpp
include/openMVG/cameras/Camera_Intrinsics_io.hpp
include/openMVG/cameras/Camera_Pinhole.hpp
@ -221,13 +223,21 @@ include/openMVG/sfm/pipelines/global/triplet_t_ACRansac_kernelAdaptator.hpp
include/openMVG/sfm/pipelines/localization/SfM_Localizer.hpp
include/openMVG/sfm/pipelines/localization/SfM_Localizer_Single_3DTrackObservation_Database.hpp
include/openMVG/sfm/pipelines/pipelines_test.hpp
include/openMVG/sfm/pipelines/relative_pose_engine.hpp
include/openMVG/sfm/pipelines/sequential/SfmSceneInitializer.hpp
include/openMVG/sfm/pipelines/sequential/SfmSceneInitializerMaxPair.hpp
include/openMVG/sfm/pipelines/sequential/SfmSceneInitializerStellar.hpp
include/openMVG/sfm/pipelines/sequential/sequential_SfM.hpp
include/openMVG/sfm/pipelines/sequential/sequential_SfM2.hpp
include/openMVG/sfm/pipelines/sfm_engine.hpp
include/openMVG/sfm/pipelines/sfm_features_provider.hpp
include/openMVG/sfm/pipelines/sfm_matches_provider.hpp
include/openMVG/sfm/pipelines/sfm_regions_provider.hpp
include/openMVG/sfm/pipelines/sfm_regions_provider_cache.hpp
include/openMVG/sfm/pipelines/sfm_robust_model_estimation.hpp
include/openMVG/sfm/pipelines/stellar/relative_scale.hpp
include/openMVG/sfm/pipelines/stellar/stellar_definitions.hpp
include/openMVG/sfm/pipelines/stellar/stellar_solver.hpp
include/openMVG/sfm/pipelines/structure_from_known_poses/structure_estimator.hpp
include/openMVG/sfm/sfm.hpp
include/openMVG/sfm/sfm_data.hpp
@ -261,56 +271,495 @@ include/openMVG/stl/stl.hpp
include/openMVG/stl/stlMap.hpp
include/openMVG/system/cpu_instruction_set.hpp
include/openMVG/system/timer.hpp
include/openMVG/third_party/ceres/autodiff_cost_function.h
include/openMVG/third_party/ceres/autodiff_local_parameterization.h
include/openMVG/third_party/ceres/c_api.h
include/openMVG/third_party/ceres/ceres.h
include/openMVG/third_party/ceres/conditioned_cost_function.h
include/openMVG/third_party/ceres/cost_function.h
include/openMVG/third_party/ceres/cost_function_to_functor.h
include/openMVG/third_party/ceres/covariance.h
include/openMVG/third_party/ceres/crs_matrix.h
include/openMVG/third_party/ceres/cubic_interpolation.h
include/openMVG/third_party/ceres/dynamic_autodiff_cost_function.h
include/openMVG/third_party/ceres/dynamic_cost_function.h
include/openMVG/third_party/ceres/dynamic_cost_function_to_functor.h
include/openMVG/third_party/ceres/dynamic_numeric_diff_cost_function.h
include/openMVG/third_party/ceres/fpclassify.h
include/openMVG/third_party/ceres/gradient_checker.h
include/openMVG/third_party/ceres/gradient_problem.h
include/openMVG/third_party/ceres/gradient_problem_solver.h
include/openMVG/third_party/ceres/internal/autodiff.h
include/openMVG/third_party/ceres/internal/config.h
include/openMVG/third_party/ceres/internal/disable_warnings.h
include/openMVG/third_party/ceres/internal/eigen.h
include/openMVG/third_party/ceres/internal/fixed_array.h
include/openMVG/third_party/ceres/internal/macros.h
include/openMVG/third_party/ceres/internal/manual_constructor.h
include/openMVG/third_party/ceres/internal/numeric_diff.h
include/openMVG/third_party/ceres/internal/port.h
include/openMVG/third_party/ceres/internal/reenable_warnings.h
include/openMVG/third_party/ceres/internal/scoped_ptr.h
include/openMVG/third_party/ceres/internal/variadic_evaluate.h
include/openMVG/third_party/ceres/iteration_callback.h
include/openMVG/third_party/ceres/jet.h
include/openMVG/third_party/ceres/local_parameterization.h
include/openMVG/third_party/ceres/loss_function.h
include/openMVG/third_party/ceres/miniglog/glog/logging.h
include/openMVG/third_party/ceres/normal_prior.h
include/openMVG/third_party/ceres/numeric_diff_cost_function.h
include/openMVG/third_party/ceres/numeric_diff_options.h
include/openMVG/third_party/ceres/ordered_groups.h
include/openMVG/third_party/ceres/problem.h
include/openMVG/third_party/ceres/rotation.h
include/openMVG/third_party/ceres/sized_cost_function.h
include/openMVG/third_party/ceres/solver.h
include/openMVG/third_party/ceres/types.h
include/openMVG/third_party/ceres/version.h
include/openMVG/third_party/cmdLine/cmdLine.h
include/openMVG/third_party/cxsparse/Include/SuiteSparse_config.h
include/openMVG/third_party/cxsparse/Include/cs.h
include/openMVG/third_party/easyexif/exif.h
include/openMVG/third_party/fast/fast.h
include/openMVG/third_party/eigen/Eigen/Cholesky
include/openMVG/third_party/eigen/Eigen/CholmodSupport
include/openMVG/third_party/eigen/Eigen/Core
include/openMVG/third_party/eigen/Eigen/Dense
include/openMVG/third_party/eigen/Eigen/Eigen
include/openMVG/third_party/eigen/Eigen/Eigenvalues
include/openMVG/third_party/eigen/Eigen/Geometry
include/openMVG/third_party/eigen/Eigen/Householder
include/openMVG/third_party/eigen/Eigen/IterativeLinearSolvers
include/openMVG/third_party/eigen/Eigen/Jacobi
include/openMVG/third_party/eigen/Eigen/LU
include/openMVG/third_party/eigen/Eigen/MetisSupport
include/openMVG/third_party/eigen/Eigen/OrderingMethods
include/openMVG/third_party/eigen/Eigen/PaStiXSupport
include/openMVG/third_party/eigen/Eigen/PardisoSupport
include/openMVG/third_party/eigen/Eigen/QR
include/openMVG/third_party/eigen/Eigen/QtAlignedMalloc
include/openMVG/third_party/eigen/Eigen/SPQRSupport
include/openMVG/third_party/eigen/Eigen/SVD
include/openMVG/third_party/eigen/Eigen/Sparse
include/openMVG/third_party/eigen/Eigen/SparseCholesky
include/openMVG/third_party/eigen/Eigen/SparseCore
include/openMVG/third_party/eigen/Eigen/SparseLU
include/openMVG/third_party/eigen/Eigen/SparseQR
include/openMVG/third_party/eigen/Eigen/StdDeque
include/openMVG/third_party/eigen/Eigen/StdList
include/openMVG/third_party/eigen/Eigen/StdVector
include/openMVG/third_party/eigen/Eigen/SuperLUSupport
include/openMVG/third_party/eigen/Eigen/UmfPackSupport
include/openMVG/third_party/eigen/Eigen/src/Cholesky/LDLT.h
include/openMVG/third_party/eigen/Eigen/src/Cholesky/LLT.h
include/openMVG/third_party/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/CholmodSupport/CholmodSupport.h
include/openMVG/third_party/eigen/Eigen/src/Core/Array.h
include/openMVG/third_party/eigen/Eigen/src/Core/ArrayBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/ArrayWrapper.h
include/openMVG/third_party/eigen/Eigen/src/Core/Assign.h
include/openMVG/third_party/eigen/Eigen/src/Core/AssignEvaluator.h
include/openMVG/third_party/eigen/Eigen/src/Core/Assign_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/BandMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/Block.h
include/openMVG/third_party/eigen/Eigen/src/Core/BooleanRedux.h
include/openMVG/third_party/eigen/Eigen/src/Core/CommaInitializer.h
include/openMVG/third_party/eigen/Eigen/src/Core/ConditionEstimator.h
include/openMVG/third_party/eigen/Eigen/src/Core/CoreEvaluators.h
include/openMVG/third_party/eigen/Eigen/src/Core/CoreIterators.h
include/openMVG/third_party/eigen/Eigen/src/Core/CwiseBinaryOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/CwiseNullaryOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/CwiseTernaryOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/CwiseUnaryOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/CwiseUnaryView.h
include/openMVG/third_party/eigen/Eigen/src/Core/DenseBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/DenseCoeffsBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/DenseStorage.h
include/openMVG/third_party/eigen/Eigen/src/Core/Diagonal.h
include/openMVG/third_party/eigen/Eigen/src/Core/DiagonalMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/DiagonalProduct.h
include/openMVG/third_party/eigen/Eigen/src/Core/Dot.h
include/openMVG/third_party/eigen/Eigen/src/Core/EigenBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/Flagged.h
include/openMVG/third_party/eigen/Eigen/src/Core/ForceAlignedAccess.h
include/openMVG/third_party/eigen/Eigen/src/Core/Functors.h
include/openMVG/third_party/eigen/Eigen/src/Core/Fuzzy.h
include/openMVG/third_party/eigen/Eigen/src/Core/GeneralProduct.h
include/openMVG/third_party/eigen/Eigen/src/Core/GenericPacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/GlobalFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/IO.h
include/openMVG/third_party/eigen/Eigen/src/Core/Inverse.h
include/openMVG/third_party/eigen/Eigen/src/Core/Map.h
include/openMVG/third_party/eigen/Eigen/src/Core/MapBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/MathFunctionsImpl.h
include/openMVG/third_party/eigen/Eigen/src/Core/Matrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/MatrixBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/NestByValue.h
include/openMVG/third_party/eigen/Eigen/src/Core/NoAlias.h
include/openMVG/third_party/eigen/Eigen/src/Core/NumTraits.h
include/openMVG/third_party/eigen/Eigen/src/Core/PermutationMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/PlainObjectBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/Product.h
include/openMVG/third_party/eigen/Eigen/src/Core/ProductBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/ProductEvaluators.h
include/openMVG/third_party/eigen/Eigen/src/Core/Random.h
include/openMVG/third_party/eigen/Eigen/src/Core/Redux.h
include/openMVG/third_party/eigen/Eigen/src/Core/Ref.h
include/openMVG/third_party/eigen/Eigen/src/Core/Replicate.h
include/openMVG/third_party/eigen/Eigen/src/Core/ReturnByValue.h
include/openMVG/third_party/eigen/Eigen/src/Core/Reverse.h
include/openMVG/third_party/eigen/Eigen/src/Core/Select.h
include/openMVG/third_party/eigen/Eigen/src/Core/SelfAdjointView.h
include/openMVG/third_party/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/Solve.h
include/openMVG/third_party/eigen/Eigen/src/Core/SolveTriangular.h
include/openMVG/third_party/eigen/Eigen/src/Core/SolverBase.h
include/openMVG/third_party/eigen/Eigen/src/Core/StableNorm.h
include/openMVG/third_party/eigen/Eigen/src/Core/Stride.h
include/openMVG/third_party/eigen/Eigen/src/Core/Swap.h
include/openMVG/third_party/eigen/Eigen/src/Core/Transpose.h
include/openMVG/third_party/eigen/Eigen/src/Core/Transpositions.h
include/openMVG/third_party/eigen/Eigen/src/Core/TriangularMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/VectorBlock.h
include/openMVG/third_party/eigen/Eigen/src/Core/VectorwiseOp.h
include/openMVG/third_party/eigen/Eigen/src/Core/Visitor.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/Half.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/Default/Settings.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/NEON/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/SSE/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/ZVector/Complex.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
include/openMVG/third_party/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/BinaryFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/NullaryFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/StlFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/TernaryFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/functors/UnaryFunctors.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/CoeffBasedProduct.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/GeneralMatrixVector_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/Parallelizer.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointProduct.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularMatrixVector_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h
include/openMVG/third_party/eigen/Eigen/src/Core/products/TriangularSolverVector.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/BlasUtil.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/Constants.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/ForwardDeclarations.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/MKL_support.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/Macros.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/Memory.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/Meta.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/NonMPL2.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/StaticAssert.h
include/openMVG/third_party/eigen/Eigen/src/Core/util/XprHelper.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/ComplexSchur.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/EigenSolver.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/RealQZ.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/RealSchur.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/AlignedBox.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/AngleAxis.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/EulerAngles.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Homogeneous.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Hyperplane.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/OrthoMethods.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/ParametrizedLine.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Quaternion.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Rotation2D.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/RotationBase.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Scaling.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Transform.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Translation.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/Umeyama.h
include/openMVG/third_party/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h
include/openMVG/third_party/eigen/Eigen/src/Householder/BlockHouseholder.h
include/openMVG/third_party/eigen/Eigen/src/Householder/Householder.h
include/openMVG/third_party/eigen/Eigen/src/Householder/HouseholderSequence.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
include/openMVG/third_party/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
include/openMVG/third_party/eigen/Eigen/src/Jacobi/Jacobi.h
include/openMVG/third_party/eigen/Eigen/src/LU/Determinant.h
include/openMVG/third_party/eigen/Eigen/src/LU/FullPivLU.h
include/openMVG/third_party/eigen/Eigen/src/LU/InverseImpl.h
include/openMVG/third_party/eigen/Eigen/src/LU/PartialPivLU.h
include/openMVG/third_party/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/LU/arch/Inverse_SSE.h
include/openMVG/third_party/eigen/Eigen/src/MetisSupport/MetisSupport.h
include/openMVG/third_party/eigen/Eigen/src/OrderingMethods/Amd.h
include/openMVG/third_party/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h
include/openMVG/third_party/eigen/Eigen/src/OrderingMethods/Ordering.h
include/openMVG/third_party/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h
include/openMVG/third_party/eigen/Eigen/src/PardisoSupport/PardisoSupport.h
include/openMVG/third_party/eigen/Eigen/src/QR/ColPivHouseholderQR.h
include/openMVG/third_party/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h
include/openMVG/third_party/eigen/Eigen/src/QR/FullPivHouseholderQR.h
include/openMVG/third_party/eigen/Eigen/src/QR/HouseholderQR.h
include/openMVG/third_party/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
include/openMVG/third_party/eigen/Eigen/src/SVD/BDCSVD.h
include/openMVG/third_party/eigen/Eigen/src/SVD/JacobiSVD.h
include/openMVG/third_party/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h
include/openMVG/third_party/eigen/Eigen/src/SVD/SVDBase.h
include/openMVG/third_party/eigen/Eigen/src/SVD/UpperBidiagonalization.h
include/openMVG/third_party/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h
include/openMVG/third_party/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/AmbiVector.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/CompressedStorage.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseAssign.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseBlock.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseColEtree.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseCompressedBase.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseDenseProduct.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseDot.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseFuzzy.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseMap.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseMatrix.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseMatrixBase.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparsePermutation.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseProduct.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseRedux.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseRef.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseSolverBase.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseTranspose.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseTriangularView.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseUtil.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseVector.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/SparseView.h
include/openMVG/third_party/eigen/Eigen/src/SparseCore/TriangularSolver.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLUImpl.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_Memory.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_Structs.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_Utils.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h
include/openMVG/third_party/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h
include/openMVG/third_party/eigen/Eigen/src/SparseQR/SparseQR.h
include/openMVG/third_party/eigen/Eigen/src/StlSupport/StdDeque.h
include/openMVG/third_party/eigen/Eigen/src/StlSupport/StdList.h
include/openMVG/third_party/eigen/Eigen/src/StlSupport/StdVector.h
include/openMVG/third_party/eigen/Eigen/src/StlSupport/details.h
include/openMVG/third_party/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h
include/openMVG/third_party/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h
include/openMVG/third_party/eigen/Eigen/src/misc/Image.h
include/openMVG/third_party/eigen/Eigen/src/misc/Kernel.h
include/openMVG/third_party/eigen/Eigen/src/misc/RealSvd2x2.h
include/openMVG/third_party/eigen/Eigen/src/misc/blas.h
include/openMVG/third_party/eigen/Eigen/src/misc/lapack.h
include/openMVG/third_party/eigen/Eigen/src/misc/lapacke.h
include/openMVG/third_party/eigen/Eigen/src/misc/lapacke_mangling.h
include/openMVG/third_party/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
include/openMVG/third_party/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
include/openMVG/third_party/eigen/Eigen/src/plugins/BlockMethods.h
include/openMVG/third_party/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
include/openMVG/third_party/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
include/openMVG/third_party/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
include/openMVG/third_party/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
include/openMVG/third_party/eigen/unsupported/Eigen/AdolcForward
include/openMVG/third_party/eigen/unsupported/Eigen/AlignedVector3
include/openMVG/third_party/eigen/unsupported/Eigen/ArpackSupport
include/openMVG/third_party/eigen/unsupported/Eigen/AutoDiff
include/openMVG/third_party/eigen/unsupported/Eigen/BVH
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/Tensor
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/TensorSymmetry
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/ThreadPool
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
include/openMVG/third_party/eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
include/openMVG/third_party/eigen/unsupported/Eigen/EulerAngles
include/openMVG/third_party/eigen/unsupported/Eigen/FFT
include/openMVG/third_party/eigen/unsupported/Eigen/IterativeSolvers
include/openMVG/third_party/eigen/unsupported/Eigen/KroneckerProduct
include/openMVG/third_party/eigen/unsupported/Eigen/LevenbergMarquardt
include/openMVG/third_party/eigen/unsupported/Eigen/MPRealSupport
include/openMVG/third_party/eigen/unsupported/Eigen/MatrixFunctions
include/openMVG/third_party/eigen/unsupported/Eigen/MoreVectorization
include/openMVG/third_party/eigen/unsupported/Eigen/NonLinearOptimization
include/openMVG/third_party/eigen/unsupported/Eigen/NumericalDiff
include/openMVG/third_party/eigen/unsupported/Eigen/OpenGLSupport
include/openMVG/third_party/eigen/unsupported/Eigen/Polynomials
include/openMVG/third_party/eigen/unsupported/Eigen/Skyline
include/openMVG/third_party/eigen/unsupported/Eigen/SparseExtra
include/openMVG/third_party/eigen/unsupported/Eigen/SpecialFunctions
include/openMVG/third_party/eigen/unsupported/Eigen/Splines
include/openMVG/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/BVH/KdBVH.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Polynomials/Companion.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Splines/Spline.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Splines/SplineFitting.h
include/openMVG/third_party/eigen/unsupported/Eigen/src/Splines/SplineFwd.h
include/openMVG/third_party/histogram/histogram.hpp
include/openMVG/third_party/htmlDoc/htmlDoc.hpp
include/openMVG/third_party/lemon/config.h
@ -725,51 +1174,61 @@ include/openMVG_dependencies/osi_clp/Osi/src/OsiSpx/OsiSpxSolverInterface.hpp
include/openMVG_dependencies/osi_clp/Osi/src/OsiXpr/OsiXprSolverInterface.hpp
include/openMVG_dependencies/osi_clp/Osi/test/OsiTestSolver.hpp
include/openMVG_dependencies/osi_clp/Osi/test/OsiTestSolverInterface.hpp
lib/libdomset.so
lib/liblib_CoinUtils.so
lib/liblib_Osi.so
lib/liblib_OsiClpSolver.so
lib/liblib_clp.a
lib/libopenMVG_ceres.so
lib/libopenMVG_ceres.so.1
lib/libopenMVG_ceres.so.1.13.0
lib/libopenMVG_cxsparse.so
lib/libopenMVG_easyexif.so
lib/libopenMVG_exif.so
lib/libopenMVG_fast.so
lib/libopenMVG_features.so
lib/libopenMVG_features.so.1
lib/libopenMVG_features.so.1.3
lib/libopenMVG_features.so.1.4
lib/libopenMVG_geometry.so
lib/libopenMVG_geometry.so.1
lib/libopenMVG_geometry.so.1.3
lib/libopenMVG_geometry.so.1.4
lib/libopenMVG_image.so
lib/libopenMVG_image.so.1
lib/libopenMVG_image.so.1.3
lib/libopenMVG_image.so.1.4
lib/libopenMVG_kvld.so
lib/libopenMVG_kvld.so.1
lib/libopenMVG_kvld.so.1.3
lib/libopenMVG_kvld.so.1.4
lib/libopenMVG_lInftyComputerVision.so
lib/libopenMVG_lInftyComputerVision.so.1
lib/libopenMVG_lInftyComputerVision.so.1.3
lib/libopenMVG_lInftyComputerVision.so.1.4
lib/libopenMVG_lemon.so
lib/libopenMVG_linearProgramming.so
lib/libopenMVG_linearProgramming.so.1
lib/libopenMVG_linearProgramming.so.1.3
lib/libopenMVG_linearProgramming.so.1.4
lib/libopenMVG_matching.so
lib/libopenMVG_matching.so.1
lib/libopenMVG_matching.so.1.3
lib/libopenMVG_matching.so.1.4
lib/libopenMVG_matching_image_collection.so
lib/libopenMVG_matching_image_collection.so.1
lib/libopenMVG_matching_image_collection.so.1.3
lib/libopenMVG_matching_image_collection.so.1.4
lib/libopenMVG_multiview.so
lib/libopenMVG_multiview.so.1
lib/libopenMVG_multiview.so.1.3
lib/libopenMVG_multiview.so.1.4
lib/libopenMVG_numeric.so
lib/libopenMVG_numeric.so.1
lib/libopenMVG_numeric.so.1.3
lib/libopenMVG_numeric.so.1.4
lib/libopenMVG_robust_estimation.so
lib/libopenMVG_robust_estimation.so.1
lib/libopenMVG_robust_estimation.so.1.3
lib/libopenMVG_robust_estimation.so.1.4
lib/libopenMVG_sfm.so
lib/libopenMVG_sfm.so.1
lib/libopenMVG_sfm.so.1.3
lib/libopenMVG_sfm.so.1.4
lib/libopenMVG_stlplus.so
lib/libopenMVG_system.so
lib/libopenMVG_system.so.1
lib/libopenMVG_system.so.1.3
lib/libstlplus.so
lib/libopenMVG_system.so.1.4
lib/libvlsift.so
lib/openMVG-targets-%%CMAKE_BUILD_TYPE%%.cmake
lib/openMVG-targets.cmake
share/lemon/cmake/LEMONConfig.cmake
share/openMVG/cmake/OpenMVGConfig.cmake
share/openMVG/cmake/OpenMVGTargets-%%CMAKE_BUILD_TYPE%%.cmake
share/openMVG/cmake/OpenMVGTargets.cmake