mirror of
https://github.com/zebrajr/opencv.git
synced 2025-12-06 12:19:50 +01:00
Support QR decomposition for stereoCalibrate
This commit is contained in:
parent
c75cd1047b
commit
455720aae8
|
|
@ -755,6 +755,9 @@ static double stereoCalibrateImpl(
|
|||
if(flags & CALIB_USE_LU) {
|
||||
solver.solveMethod = DECOMP_LU;
|
||||
}
|
||||
else if(flags & CALIB_USE_QR) {
|
||||
solver.solveMethod = DECOMP_QR;
|
||||
}
|
||||
|
||||
if( recomputeIntrinsics )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user