kornia-examples icon indicating copy to clipboard operation
kornia-examples copied to clipboard

Results 3 kornia-examples issues
Sort by recently updated
recently updated
newest added

Hi, how do i use your Homography Tracking module? thanks i have planar object image and video, how do I use your API to track planar objects in a video

Hi, I am testing the depth_estimation.ipynb examples that you guys have provided to warp the source image to the target image using the depth map of the target image. However,...

bug

I tried `depth_estimation.ipynb`. ``` # warp by depth i_trans_j = i_pose_w @ torch.inverse(j_pose_w) k_trans_j = k_pose_w @ torch.inverse(j_pose_w) dst_trans_src = torch.cat([i_trans_j, k_trans_j], dim=0) depth_src = depth_j intrinsics_src = intrinsics_j image_src...