Small fixes and updating other results.
This commit is contained in:
4080
media/RESULTS.md
4080
media/RESULTS.md
File diff suppressed because it is too large
Load Diff
@ -344,7 +344,7 @@ def main():
|
|||||||
for label in tqdm.tqdm(labels):
|
for label in tqdm.tqdm(labels):
|
||||||
images_2d = []
|
images_2d = []
|
||||||
|
|
||||||
if old_scene != label.get("scene", ""):
|
if old_scene != label.get("scene", "") or dataset_use == "human36m_wb":
|
||||||
# Reset last poses if scene changes
|
# Reset last poses if scene changes
|
||||||
old_scene = label.get("scene", "")
|
old_scene = label.get("scene", "")
|
||||||
triangulator.reset()
|
triangulator.reset()
|
||||||
|
|||||||
@ -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;
|
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 &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]];
|
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)
|
if (score > threshold)
|
||||||
{
|
{
|
||||||
#pragma omp critical
|
#pragma omp critical
|
||||||
|
|||||||
Reference in New Issue
Block a user