forked from openMVG/openMVG
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[sfm/clustering] Add a scene clustering approach openMVG#857
- Add the interface to compute the camera cluster on a OpenMVG sfm_data scene. - fix a bug in domset.cc @rperrot - use more c++11 feature in the code - fix backward View id mapping in main_ComputeClusters - removed the nanoflann dependency
- Loading branch information
Showing
11 changed files
with
978 additions
and
2,100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
add_subdirectory(domSetLibrary) | ||
|
||
# compute clusters for a given sfm_data.bin | ||
add_executable(openMVG_main_ComputeClusters main_ComputeClusters.cpp) | ||
target_link_libraries(openMVG_main_ComputeClusters | ||
openMVG_system | ||
openMVG_image | ||
openMVG_features | ||
openMVG_sfm | ||
domset) | ||
|
||
set_property(TARGET openMVG_main_ComputeClusters PROPERTY FOLDER OpenMVG/software/clustering) | ||
install(TARGETS openMVG_main_ComputeClusters DESTINATION bin/) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
add_library( domset domset.cc domset.h types.h ) |
Oops, something went wrong.