Small fixes and updating other results.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
// =================================================================================================
|
||||
|
||||
// Forward declaration of the class, that swig does try to parse all its dependencies.
|
||||
// Forward declaration of the class, that swig does not try to parse all its dependencies.
|
||||
class TriangulatorInternal;
|
||||
|
||||
// =================================================================================================
|
||||
|
||||
@ -296,7 +296,7 @@ std::vector<std::vector<std::array<float, 4>>> TriangulatorInternal::triangulate
|
||||
const cv::Mat &last_dist = std::get<1>(last_poses_2d[i])[j];
|
||||
const cv::Mat &new_pose = poses_2d_mats_core_list[mats_core_map[i][k]];
|
||||
|
||||
double score = calc_pose_score(new_pose, last_pose, last_dist, internal_cameras[i]);
|
||||
float score = calc_pose_score(new_pose, last_pose, last_dist, internal_cameras[i]);
|
||||
if (score > threshold)
|
||||
{
|
||||
#pragma omp critical
|
||||
|
||||
Reference in New Issue
Block a user