/!\ Warning! Make sure that the last Pose2Sim version is installed with `pip install pose2sim -U`
**1. Set the number of persons to analyze and their ordering method:**
See https://github.com/davidpagnon/Sports2D?tab=readme-ov-file#select-the-persons-you-are-interested-in
Specify the number of persons you want to analyze and post-process (set 'all' if you want them all)
Order them with one of these 6 methods:
- 'on_click',
- 'highest_likelihood',
- 'greatest_displacement',
- 'least_displacement',
- 'first_detected',
- 'last_detected'
Note that the person with reference height will be the first one coming out of this ordering.
Among other advantages, this will make it easier to set the height and masses of the each person in the right order.
I tried to make the "on_click" UI look consistent with the synchronization one by HunMin.
Beware of the changes in the parameters:
- New: nb_persons_to_detect = 'all' int or 'all' Limiting or not the number of persons to be analyzed
- New: person_selection_method = 'on_click' 'on_click', 'highest_likelihood', 'greatest_displacement', 'least_displacement', 'first_detected', or 'last_detected'
- New: first_person_height = 1.76
- Removed: multiperson is removed (replaced by nb_persons_to_detect)
- Removed: px_to_m_person_height (becomes first_person_height)
- Removed: px_to_m_from_person_id (first selected person will be chosen)
- Changed: the 'project' and 'process' sections of the configuration file have been replaced by 'base'
Note that the default visible_side order has changed and is now ['auto', 'front', 'none'] (instead of ['front', 'none', 'auto'])

**2. Others:**
- Only the selected persons are saved (images, videos, trc, mot), with post-processed angles.
- Fixed time index and image saves with load_trc_px
- Fixed angle computation with whole_body pose_model
- Handled warning in compute_floor_line when a line is full of nan
- Deleted setup.cfg and setup.py to switch to pyproject.toml
Also, the code is becoming kind of a mess... What I should do is rewrite it all, but that requires time I do not have.