OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:reprojerrs
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/samples/cpp/
calibration.cpp
142
vector<float>&
reprojErrs
,
164
rvecs, tvecs, cameraMatrix, distCoeffs,
reprojErrs
);
175
const vector<float>&
reprojErrs
,
189
if( !rvecs.empty() || !
reprojErrs
.empty() )
190
fs << "nframes" << (int)std::max(rvecs.size(),
reprojErrs
.size());
216
if( !
reprojErrs
.empty() )
217
fs << "per_view_reprojection_errors" << Mat(
reprojErrs
);
274
vector<float>
reprojErrs
;
279
rvecs, tvecs,
reprojErrs
, totalAvgErr);
290
writeExtrinsics ?
reprojErrs
: vector<float>()
[
all
...]
/external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp
458
vector<float>&
reprojErrs
, double& totalAvgErr)
481
rvecs, tvecs, cameraMatrix, distCoeffs,
reprojErrs
);
489
const vector<float>&
reprojErrs
, const vector<vector<Point2f> >& imagePoints,
502
if( !rvecs.empty() || !
reprojErrs
.empty() )
503
fs << "nr_of_frames" << (int)std::max(rvecs.size(),
reprojErrs
.size());
529
if (s.writeExtrinsics && !
reprojErrs
.empty())
530
fs << "per_view_reprojection_errors" << Mat(
reprojErrs
);
569
vector<float>
reprojErrs
;
572
bool ok = runCalibration(s, imageSize, cameraMatrix, distCoeffs, imagePoints, rvecs, tvecs,
reprojErrs
,
578
saveCameraParams(s, imageSize, cameraMatrix, distCoeffs, rvecs, tvecs,
reprojErrs
, imagePoints
[
all
...]
Completed in 723 milliseconds