We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c743a80 commit 5ae104aCopy full SHA for 5ae104a
src/aliceVision/sfm/pipeline/sequential/ReconstructionEngine_sequentialSfM.cpp
@@ -227,7 +227,16 @@ bool ReconstructionEngine_sequentialSfM::process()
227
228
exportStatistics(elapsedTime);
229
230
- return !_sfmData.getPoses().empty();
+ int nbviews = _sfmData.getViews().size();
231
+ int nbposes = _sfmData.getPoses().size();
232
+
233
+ int minPoses = 1;
234
+ if (nbviews > 5)
235
+ {
236
+ minPoses = 3;
237
+ }
238
239
+ return (nbposes >= minPoses);
240
}
241
242
void ReconstructionEngine_sequentialSfM::initializePyramidScoring()
0 commit comments