Use more joints for final merge.
This commit is contained in:
2592
media/RESULTS.md
2592
media/RESULTS.md
File diff suppressed because it is too large
Load Diff
@ -1534,7 +1534,7 @@ cv::Mat TriangulatorInternal::merge_group(const std::vector<cv::Mat> &poses_3d,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Select the best-k proposals for each joint that are closest to the initial pose
|
// Select the best-k proposals for each joint that are closest to the initial pose
|
||||||
int keep_best = 3;
|
int keep_best = std::max(3, num_poses / 3);
|
||||||
cv::Mat best_k_mask = cv::Mat::zeros(num_poses, num_joints, CV_8U);
|
cv::Mat best_k_mask = cv::Mat::zeros(num_poses, num_joints, CV_8U);
|
||||||
for (int j = 0; j < num_joints; ++j)
|
for (int j = 0; j < num_joints; ++j)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user