You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your great work, I make my data in SUNRGBD format, it works successfully in pointcloud mode.
classes AP_0.25 AR_0.25 AP 0.50AR 0.50
chair 1.0000 1.0000 0.9994 0.9994
table 1.0000 1.0000 1.0000 1.0000
bottle 1.0000 1.0000 1.0000 1.0000
cup 1.0000 1.0000 0.9700 1.0000
Overall 0.9999 1.0000 0.9810 0.9925
But when I try to train a ff model, the result during trains is all zero:
+---------+---------+---------+---------+---------+
| classes | AP_0.25 | AR_0.25 | AP_0.50 | AR_0.50 |
+---------+---------+---------+---------+---------+
| chair | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| table | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| bottle | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| cup | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
+---------+---------+---------+---------+---------+
| Overall | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
+---------+---------+---------+---------+---------+
I want to ask 2 questions:
(1) I set all box 2d to [0, 0, 512, 512], because the loss is calculated using box_3d, so I set a random value to box 2d, is it works?
(2) I set 'Rt' to np.eye(3), will this influence the result?
The text was updated successfully, but these errors were encountered:
(1) Yes, i think we simply ignore 2d bboxes.
(2) No, I believe it is a serious issue. R should be correct, e.g. each 3d box should be projected to the correct position of its object in 2d after applying K and R.
(3) Probably yes, you can even try imagenet-trained resnet from mmcv. But I don't think it is important. Just be careful with image normalization, to be sure that it is the same as was during pre-training.
Thanks for your great work, I make my data in SUNRGBD format, it works successfully in pointcloud mode.
classes AP_0.25 AR_0.25 AP 0.50AR 0.50
chair 1.0000 1.0000 0.9994 0.9994
table 1.0000 1.0000 1.0000 1.0000
bottle 1.0000 1.0000 1.0000 1.0000
cup 1.0000 1.0000 0.9700 1.0000
Overall 0.9999 1.0000 0.9810 0.9925
But when I try to train a ff model, the result during trains is all zero:
+---------+---------+---------+---------+---------+
| classes | AP_0.25 | AR_0.25 | AP_0.50 | AR_0.50 |
+---------+---------+---------+---------+---------+
| chair | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| table | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| bottle | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
| cup | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
+---------+---------+---------+---------+---------+
| Overall | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
+---------+---------+---------+---------+---------+
I have checked my *.pkl files:
I want to ask 2 questions:
(1) I set all box 2d to [0, 0, 512, 512], because the loss is calculated using box_3d, so I set a random value to box 2d, is it works?
(2) I set 'Rt' to np.eye(3), will this influence the result?
The text was updated successfully, but these errors were encountered: