when I run run_video.py, Bone spots are not detected
so I compare run_video.py with run.py
humans = e.inference(image,resize_to_default=(w > 0 and h > 0), upsample_size=args.resize_out_ratio)
that is right
maybe my environment configuration is wrong
Hey,
for me, run_video.py did not work properly with the default upsample_size too. After changing this parameter to the value from run.py:
humans = e.inference (image, upsample_size = 4.0)
everything works correctly.
Good luck!
Thank you very much @JakubWojciechowski
Thank you so much @JakubWojciechowski :0
Most helpful comment
Hey,
for me, run_video.py did not work properly with the default upsample_size too. After changing this parameter to the value from run.py:
humans = e.inference (image, upsample_size = 4.0)
everything works correctly.
Good luck!