Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve tetrahedral intersection #848

Merged
merged 26 commits into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
88443ca
[fuseCut] add struct for advanced geometry intersection
dsmtE Jul 28, 2020
8e44731
[fuseCut] delaunayGraphCut: Add a function to get neighbouring cells …
dsmtE Jul 28, 2020
d43ed97
[fuseCut] DelaunayGraphCut: fix the order during the insertion of cam…
dsmtE Jul 28, 2020
0e0049c
[fuseCut] DelaunayGraphCut: Add progress Bar
dsmtE Jul 28, 2020
91d5f92
[fuseCut] delaunayGraphCut: add geometry intersections functions
dsmtE Jul 30, 2020
4fe8bbb
[fuseCut] DelaunayGraphCut: new implementation using geometry (CRITIC)
dsmtE Jul 30, 2020
3e36c89
[fuseCut] DelaunayGraphCut: remove old implementation
dsmtE Jul 30, 2020
5f70f8f
[fuseCut] clean
dsmtE Jul 30, 2020
4fc5383
[FuseCut] DelaunayGraphCut: Add geometries history
dsmtE Jul 30, 2020
08123ba
[FuseCut] DelaunayGraphCut: update mesh export for debugging
dsmtE Jul 30, 2020
3c24426
[fuseCut] DelaunayGraphCut: add unit test
dsmtE Jul 31, 2020
e3f77e3
[fuseCut] DelaunayGraphCut: Use an adaptive epsilon factor for the in…
dsmtE Aug 4, 2020
0c5fb60
[fuseCut] DelaunayGraphCut: Remove unused EDirection struct
dsmtE Aug 5, 2020
30f8e92
[fuseCut] DelaunayGraphCut: export csv data for debugging purposes
dsmtE Aug 3, 2020
1992601
[fuseCut] DelaunayGraphCut: renaming and more detailed log message fo…
dsmtE Aug 4, 2020
ca58646
[fuseCut] DelaunayGraphCut: generalize getNeighboringCells for geomet…
dsmtE Aug 5, 2020
6b7218f
[fuseCut] DelaunayGraphCut: add equality operators for few struct
dsmtE Aug 5, 2020
64db42f
[fuseCut] DelaunayGraphCut: fix new implementation
dsmtE Aug 6, 2020
e26fa79
[mvsData] getLineTriangleIntersectBarycCoords: use double instead of …
dsmtE Aug 7, 2020
432964c
[fuseCut] DelaunayGraphCut: handle ambigious case in rayIntersectTria…
dsmtE Aug 7, 2020
24117a9
[fuseCut] DelaunayGraphCut : define an adapted value for marginEpsilon
dsmtE Aug 7, 2020
87903cb
[FuseCut] DelaunayGraphCut: cleaner debug messages
dsmtE Aug 7, 2020
c620efc
[FuseCut] DelaunayGraphCut: add GeometryIntersection operators
dsmtE Aug 7, 2020
2760cbe
[software] meshing: add log info for boundingBox size
dsmtE Aug 7, 2020
5b2930a
[FuseCut] DelaunayGraphCut: function documentation
dsmtE Aug 7, 2020
5e545ae
[fuseCut] build fix: missing return of non-void function
fabiencastan Jan 20, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/aliceVision/fuseCut/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,12 @@ alicevision_add_library(aliceVision_fuseCut
nanoflann
Boost::boost
)

# Unit tests
alicevision_add_test(DelaunayGraphCut_test.cpp
NAME "fuseCut_delaunayGraphCut"
LINKS aliceVision_fuseCut
aliceVision_sfm
aliceVision_multiview
aliceVision_multiview_test_data
)
Loading