Increased 2D pose merging threshold.
This commit is contained in:
3634
media/RESULTS.md
3634
media/RESULTS.md
File diff suppressed because it is too large
Load Diff
@ -977,7 +977,7 @@ namespace utils_2d_pose
|
|||||||
|
|
||||||
// Calculate pixel threshold based on image size
|
// Calculate pixel threshold based on image size
|
||||||
size_t min_dim = std::min(image_size[0], image_size[1]);
|
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
|
// Merge poses if enough joints are close
|
||||||
std::vector<std::vector<std::array<float, 3>>> merged_poses;
|
std::vector<std::vector<std::array<float, 3>>> merged_poses;
|
||||||
|
|||||||
Reference in New Issue
Block a user