Houssem Mejbri
Houssem Mejbri
Yup overwrite_intrinsics is set to false
I just tested the latest version of the code and its still causing problems. This time it loads the extrinsics frame but after labeling the corners of the first camera...
Update : I replaced imgp == [] with len(imgp) == 0 and it works now
I got pose videos and calib_checkerboard.toml file from another project and I generated the static and pose keypoints of the videos using openpose, I skipped the calibration and executed triangulation...
That's the full message --------------------------------------------------------------------- Triangulation of 2D points for S00_P00_T00_StaticTrial, for all frames. On Monday 08. April 2024, 12:12:20 --------------------------------------------------------------------- Project directory: /home/ubuntu/S00_P00_Participant/S00_P00_T00_StaticTrial An error occurred: list indices must...
Turns out I was using a try except that's why the full error was not showing. `Traceback (most recent call last): File "/home/ubuntu/pfe_mocap/main.py", line 53, in asyncio.run(main()) File "/opt/conda/lib/python3.10/asyncio/runners.py", line...
now the print is causing the error Traceback (most recent call last): File "/home/ubuntu/pfe_mocap/main.py", line 53, in asyncio.run(main()) File "/opt/conda/lib/python3.10/asyncio/runners.py", line 44, in run return loop.run_until_complete(main) File "/opt/conda/lib/python3.10/asyncio/base_events.py", line 649,...
Traceback (most recent call last): File "/home/ubuntu/pfe_mocap/main.py", line 53, in asyncio.run(main()) File "/opt/conda/lib/python3.10/asyncio/runners.py", line 44, in run return loop.run_until_complete(main) File "/opt/conda/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete return future.result() File "/home/ubuntu/pfe_mocap/main.py", line...
This is what the print shows [['./S00_P00_Participant/S00_P00_T00_StaticTrial/pose/cam_1_json/cam1.0.json', './S00_P00_Participant/S00_P00_T00_StaticTrial/pose/cam_1_json/cam1.1.json', './S00_P00_Participant/S00_P00_T00_StaticTrial/pose/cam_1_json/cam1.2.json', './S00_P00_Participant/S00_P00_T00_StaticTrial/pose/cam_1_json/cam1.3.json', ... ]] And this is the content of one of the files [[[269.99053955078125, 387.82830810546875, 0.8961206674575806], [267.3406066894531, 429.7220458984375, 0.9161862134933472], [235.9087677001953, 432.2477111816406,...
This is my keypoints generation script, I executed this command `bin\OpenPoseDemo.exe --model_pose BODY_25B --video \videos\cam01.mp4 --write_json \pose\pose_cam01_json` but using python `# generate json files containing the keypoints of each camera...