David PAGNON

Results 123 comments of David PAGNON
trafficstars

Yes you're right, I must have overwritten something by mistake... I'll fix this and push the change as well as a bunch of others tonight or during the week-end!

Hi, thanks! Sorry I had a few merge issues but I'll make the fixes tonight.

Could you give me more context? Are you running the Demo or your own data? Did you edit your Config.toml file? What is the full error message?

If you don't run calibration anymore, it should not make a difference whether you set calibration type to calculate or anything else. Could you send me the full error message...

Oh really, is there nothing kind of like that? ```python ------------------------------------------------------------------------- TypeError Traceback (most recent call last) in 3 choice = input('Which list index would you like to pick (0,...

This is strange, I don't see where you would get a string from this line... Could you edit the line in question, add beforehand: ```python print(repr([len(json.load(open(json_fname))['people']) for json_fname in json_tracked_files[0]]))...

Okay, thanks, we're going step by step :) Now replace the line you added with: ```python json_fname = json_tracked_files[0][0] print(repr( json.load(open(json_fname))['people'] )) ```

There must be a problem in your json files. Can you print(json_tracked_files) And open them with an editor to see if there is anything wrong with them?

Okay, this is where the problem lies: how did you obtain your json files? They should look like that: ```json { "version":1.3, "people": [ { "face_keypoints_2d": [ ], "face_keypoints_3d": [...

I guess you are using the OpenPose python API? I have actually never tried it, but I'm surprised the output is different from the one from the OpenPoseDemo.exe one. For...