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.
[multiview] 2 View triangulation openMVG#1623
Enable the usage of the new generic 2view triangulation routine in: - the sequential SfM pipeline, - the ComputeStructureFromKnowPoses (epipolar filtered, or robust triangulation of tracks).
- Loading branch information
Showing
9 changed files
with
123 additions
and
31 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,26 @@ | ||
// This file is part of OpenMVG, an Open Multiple View Geometry C++ library. | ||
|
||
// Copyright (c) 2019 Pierre MOULON. | ||
|
||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
#ifndef OPENMVG_MULTIVIEW_TRIANGULATION_TYPE_HPP | ||
#define OPENMVG_MULTIVIEW_TRIANGULATION_TYPE_HPP | ||
|
||
namespace openMVG | ||
{ | ||
/// Define various enumerate for each available two view triangulation solver | ||
enum class ETriangulationMethod : unsigned char | ||
{ | ||
DIRECT_LINEAR_TRANSFORM, // DLT | ||
L1_ANGULAR, | ||
LINFINITY_ANGULAR, | ||
INVERSE_DEPTH_WEIGHTED_MIDPOINT, | ||
DEFAULT = INVERSE_DEPTH_WEIGHTED_MIDPOINT | ||
}; | ||
|
||
} // namespace openMVG | ||
|
||
#endif //OPENMVG_MULTIVIEW_TRIANGULATION_TYPE_HPP |
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
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
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
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