Increased 2D pose merging threshold.

This commit is contained in:
Daniel
2025-01-28 14:54:01 +01:00
parent 1cc71cce57
commit 321aa0a714
2 changed files with 1818 additions and 1818 deletions

View File

@ -977,7 +977,7 @@ namespace utils_2d_pose
// Calculate pixel threshold based on image size
size_t min_dim = std::min(image_size[0], image_size[1]);
float pixel_threshold = 0.01f * min_dim;
float pixel_threshold = 0.025f * min_dim;
// Merge poses if enough joints are close
std::vector<std::vector<std::array<float, 3>>> merged_poses;