shuangw98
Results
2
issues of
shuangw98
您好,我发现在评估MR计算IoU时没有将width和height加一,例如: image.py: ```python def box_overlap_opr(self, dboxes:np.ndarray, gboxes:np.ndarray, if_iou): eps = 1e-6 assert dboxes.shape[-1] >= 4 and gboxes.shape[-1] >= 4 N, K = dboxes.shape[0], gboxes.shape[0] dtboxes = np.tile(np.expand_dims(dboxes, axis = 1),...
Thanks for your great work! I noticed that you used a fixed focal length when rendering objaverse, which can cause the focal length of the input image to be inconsistent...