1

i am just get github code and while run it give this error i found for solution and get kornia official code for get perspective transform KORNIA SITE CODE : https://kornia.readthedocs.io/en/v0.5.0/tutorials/warp_perspective.html , error is at bottom of the line in this code , error says : AttributeError: module 'kornia' has no attribute 'get_perspective_transform'

import torch
import kornia
points_src = torch.tensor([[
    [125., 150.], [562., 40.], [562., 282.], [54., 328.],
]])
h, w = 64, 128 
points_dst = torch.tensor([[
    [0., 0.], [w - 1., 0.], [w - 1., h - 1.], [0., h - 1.],
]])
############################################### ERROR AT HERE !!!!!!!!!!!!!!!!!!!!!!!!!!!!########################
M: torch.tensor = kornia.get_perspective_transform(points_src, points_dst)
############################################### ERROR AT HERE !!!!!!!!!!!!!!!!!!!!!!!!!!!!########################
AloneTogether
  • 25,814
  • 5
  • 20
  • 39
ketan
  • 163
  • 1
  • 9

1 Answers1

0
from kornia.geometry.transform.imgwarp import get_perspective_transform
Tarosh G
  • 1
  • 1