EasyMocap icon indicating copy to clipboard operation
EasyMocap copied to clipboard

The json files in keypoints3d folder are empty

Open Taylorminer opened this issue 3 years ago • 2 comments

When I test mvmp.py on my own datasets, the json files in keypoints3d folder are empty. The files in detec and keypoints2d seem normal. I debug this program, and I find that "(proposal != -1).sum() < cfg.min_views"(line 71 in associate.py). Thus, the program skip the following step("keypoints3d = batch_triangulate(keypoints2d, Pused)" line 75 in associate.py)). Can you tell me why I get this error?

Taylorminer avatar Jul 25 '22 12:07 Taylorminer

This step is check the minimal views. This may occur when the cameras are sparse or the scene is crowded.

chingswy avatar Jul 29 '22 07:07 chingswy

@chingswy Thanks for your reply. It seems some wrong in camera calibration. It work after I delete " k3d[:, 0] *= -1" like #155, but I don't know the reason.

Taylorminer avatar Aug 08 '22 02:08 Taylorminer