Hello, thanks for the great work!
I have one issue on the intrinsics input for the WildHandsDataset. I have collected data using the realsense RGB-D camera and input the camera intrinsics to the dataset as self.K. Then, I initialize intrx = self.K.copy() and follow previous setting to get aug intrix:
intrx = self.K.copy()
intrx = data_utils.get_aug_intrix(
intrx,
fixed_focal_length,
args.img_res,
True,
center_original[0],
center_original[1],
augm_dict["sc"] * scale_original,
)
I also input the camera focal length besides the intrinsics.
However, with the true camera parameters, the outputs seem deviate the hand position:

Could you please explain the potential reasons for it? And is there any setting we need to change with the true camera parameters? Thanks!
Hello, thanks for the great work!
I have one issue on the intrinsics input for the WildHandsDataset. I have collected data using the realsense RGB-D camera and input the camera intrinsics to the dataset as
self.K. Then, I initializeintrx = self.K.copy()and follow previous setting to get aug intrix:I also input the camera focal length besides the intrinsics.
However, with the true camera parameters, the outputs seem deviate the hand position:

Could you please explain the potential reasons for it? And is there any setting we need to change with the true camera parameters? Thanks!